prophet-rb 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db6bcb7718fabc1b3eb85bfac7e772f4e792b190acb7147f533c105bb67ce7c2
4
- data.tar.gz: 43446f1d8923d712e4c7856b3529f0c36b5c32c3dbfec59ca2124b901e8a8b0d
3
+ metadata.gz: 455967bcdd71332715b83a6095dd9068fdcfbe5c29064315458faa31ef9f37bb
4
+ data.tar.gz: 7492995c53307c1c37eb8b169e32fdaac474e91e8398e41c8c7d2c9e40ea5cfb
5
5
  SHA512:
6
- metadata.gz: 3f6c0802652ee69eeef122356743c7ea7b86d3e6252a78852dc8b5ab88e3bd1cb1aa88cb4193fe1de6581a2034b3827f5ccb4a8a0cb4f53af5cc7d5439bb8b3e
7
- data.tar.gz: 77d16680eac6f21e60c2e46d4f87f55fa9b8a0778ade2d3d7b244e90ce3978063b6f845ddcaa63d8f38982dcd665ef3b6a1993b394cf280698e4ac1793350a23
6
+ metadata.gz: 2627962cf86a8eaa3b7018aa82157b6b53837817ab642782078372368199e8a80417ec93dc7e0bb8f44a5b8f32a9ba3492e18433579c13e24215dea84f9aa961
7
+ data.tar.gz: 118b13c8aefe85854f64d84a4bbcd0b72bf5fd77e46bc0c99902c0651c7530ca413c1a388820a894c4ed08f779db7cf4027bc5682dbe9dcb6081ad1d6ce1ee97
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.5.2 (2024-10-26)
2
+
3
+ - Fixed warning with `plot` method
4
+
1
5
  ## 0.5.1 (2024-05-06)
2
6
 
3
7
  - Added `scaling` option
data/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
3
  Copyright (c) Facebook, Inc. and its affiliates.
4
- Copyright (c) 2020-2023 Andrew Kane
4
+ Copyright (c) 2020-2024 Andrew Kane
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining
7
7
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -10,7 +10,7 @@ Supports:
10
10
 
11
11
  And gracefully handles missing data
12
12
 
13
- [![Build Status](https://github.com/ankane/prophet-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/prophet-ruby/actions)
13
+ [![Build Status](https://github.com/ankane/prophet-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/prophet-ruby/actions)
14
14
 
15
15
  ## Installation
16
16
 
@@ -454,15 +454,6 @@ m2 = Prophet.new.fit(df, init: stan_init(m1)) # Adding the last day, warm-starti
454
454
 
455
455
  - [Forecasting at Scale](https://peerj.com/preprints/3190.pdf)
456
456
 
457
- ## Upgrading
458
-
459
- ### 0.2.0
460
-
461
- Prophet now uses [Rover](https://github.com/ankane/rover) instead of Daru. Two changes you may need to make are:
462
-
463
- - `Rover.read_csv` instead of `Daru::DataFrame.from_csv`
464
- - `df[["ds", "yhat"]]` instead of `df["ds", "yhat"]`
465
-
466
457
  ## Credits
467
458
 
468
459
  This library was ported from the [Prophet Python library](https://github.com/facebook/prophet) and is available under the same license.
@@ -129,7 +129,7 @@ module Prophet
129
129
  reserved_names = [
130
130
  "trend", "additive_terms", "daily", "weekly", "yearly",
131
131
  "holidays", "zeros", "extra_regressors_additive", "yhat",
132
- "extra_regressors_multiplicative", "multiplicative_terms",
132
+ "extra_regressors_multiplicative", "multiplicative_terms"
133
133
  ]
134
134
  rn_l = reserved_names.map { |n| "#{n}_lower" }
135
135
  rn_u = reserved_names.map { |n| "#{n}_upper" }
data/lib/prophet/plot.rb CHANGED
@@ -259,7 +259,7 @@ module Prophet
259
259
  end
260
260
  ax.grid(true, which: "major", c: "gray", ls: "-", lw: 1, alpha: 0.2)
261
261
  months = dates.MonthLocator.new((1..12).to_a, bymonthday: 1, interval: 2)
262
- ax.xaxis.set_major_formatter(ticker.FuncFormatter.new(lambda { |x, pos=nil| dates.num2date(x).strftime("%B %-e") }))
262
+ ax.xaxis.set_major_formatter(ticker.FuncFormatter.new(lambda { |x, pos = nil| dates.num2date(x).strftime("%B %-e") }))
263
263
  ax.xaxis.set_major_locator(months)
264
264
  ax.set_xlabel("Day of year")
265
265
  ax.set_ylabel(name)
@@ -301,7 +301,7 @@ module Prophet
301
301
  else
302
302
  fmt_str = "%m/%d"
303
303
  end
304
- ax.xaxis.set_major_formatter(ticker.FuncFormatter.new(lambda { |x, pos=nil| dates.num2date(x).strftime(fmt_str) }))
304
+ ax.xaxis.set_major_formatter(ticker.FuncFormatter.new(lambda { |x, pos = nil| dates.num2date(x).strftime(fmt_str) }))
305
305
  ax.set_xlabel("ds")
306
306
  ax.set_ylabel(name)
307
307
  if @seasonalities[name][:mode] == "multiplicative"
@@ -313,6 +313,7 @@ module Prophet
313
313
  def set_y_as_percent(ax)
314
314
  yticks = 100 * ax.get_yticks
315
315
  yticklabels = yticks.tolist.map { |y| "%.4g%%" % y }
316
+ ax.set_yticks(ax.get_yticks.tolist)
316
317
  ax.set_yticklabels(yticklabels)
317
318
  ax
318
319
  end
@@ -148,14 +148,14 @@ module Prophet
148
148
  def platform
149
149
  if Gem.win_platform?
150
150
  "windows"
151
- elsif RbConfig::CONFIG["host_os"] =~ /darwin/i
152
- if RbConfig::CONFIG["host_cpu"] =~ /arm|aarch64/i
151
+ elsif RbConfig::CONFIG["host_os"].match?(/darwin/i)
152
+ if RbConfig::CONFIG["host_cpu"].match?(/arm|aarch64/i)
153
153
  "arm64-darwin"
154
154
  else
155
155
  "x86_64-darwin"
156
156
  end
157
157
  else
158
- if RbConfig::CONFIG["host_cpu"] =~ /arm|aarch64/i
158
+ if RbConfig::CONFIG["host_cpu"].match?(/arm|aarch64/i)
159
159
  "aarch64-linux"
160
160
  else
161
161
  "x86_64-linux"
@@ -1,3 +1,3 @@
1
1
  module Prophet
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prophet-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-06 00:00:00.000000000 Z
11
+ date: 2024-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cmdstan
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  - !ruby/object:Gem::Version
167
167
  version: '0'
168
168
  requirements: []
169
- rubygems_version: 3.5.9
169
+ rubygems_version: 3.5.16
170
170
  signing_key:
171
171
  specification_version: 4
172
172
  summary: Time series forecasting for Ruby