Skip to content

Commit

Permalink
🔖 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteDE committed Feb 12, 2025
1 parent d9fd0e2 commit b99c286
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ plumber.plot_gaps_heatmap(time_step='d')
Plot time series with missing data highlighted:

```python
fig = plumber.plot(plot_gaps_1=True)
fig = plumber.plot(plot_gaps=True)
fig.show(None)
```

Expand Down Expand Up @@ -142,14 +142,13 @@ pipe_dict = {
[
"FillGapsAR",
{
"model_kwargs": {
"ar_kwargs": {"order": (4, 1, 2), "trend": "t"},
"seasonal": "2d",
"trend": "2d",
}
},
],
],
"model_name": "Prophet",
"resample_at_td": "1h",
"gaps_gte": "3h",
"gaps_lte": "3d"
}
]
]
}
}

Expand Down
3 changes: 2 additions & 1 deletion requirements/install-min.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ scikit-learn==1.2.2
statsmodels==0.14.4
matplotlib==3.5.1
plotly==5.3.1
requests==2.32.3
requests==2.32.3
prophet==1.1.6
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="python-tide",
version="0.1.3",
version="0.1.4",
description="Measured data visualization and pipelines",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b99c286

Please sign in to comment.