Skip to content

Commit 001b4ad

Browse files
committed
🔖 0.1.4
1 parent d9fd0e2 commit 001b4ad

File tree

6 files changed

+60
-62
lines changed

6 files changed

+60
-62
lines changed
File renamed without changes.

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ plumber.plot_gaps_heatmap(time_step='d')
101101
Plot time series with missing data highlighted:
102102

103103
```python
104-
fig = plumber.plot(plot_gaps_1=True)
104+
fig = plumber.plot(plot_gaps=True)
105105
fig.show(None)
106106
```
107107

@@ -142,14 +142,13 @@ pipe_dict = {
142142
[
143143
"FillGapsAR",
144144
{
145-
"model_kwargs": {
146-
"ar_kwargs": {"order": (4, 1, 2), "trend": "t"},
147-
"seasonal": "2d",
148-
"trend": "2d",
149-
}
150-
},
151-
],
152-
],
145+
"model_name": "Prophet",
146+
"resample_at_td": "1h",
147+
"gaps_gte": "3h",
148+
"gaps_lte": "3d"
149+
}
150+
]
151+
]
153152
}
154153
}
155154

pyproject.toml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
[project]
2+
name = "tide"
3+
version = "0.1.4"
4+
description = "Measured data visualization and pipelines creation"
5+
readme = "README.md"
6+
license = { file = "LICENSE.md" }
7+
authors = [{ name = "Baptiste Durand-Estebe", email = "b.durandestebe@gmail.com" }]
8+
maintainers = [
9+
{ name = "Baptiste Durand-Estebe", email = "b.durandestebe@gmail.com" },
10+
]
11+
classifiers = [
12+
"Development Status :: 4 - Beta",
13+
"Intended Audience :: Developers",
14+
"License :: OSI Approved :: BSD License",
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.10",
17+
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
20+
]
21+
requires-python = ">=3.10"
22+
dependencies = [
23+
"numpy>=1.22.4, <2.0",
24+
"pandas>=2.0.0, <3.0",
25+
"scipy>=1.9.1, <2.0",
26+
"bigtree>=0.21.3",
27+
"scikit-learn>=1.2.2, <2.0",
28+
"statsmodels>=0.14.4",
29+
"matplotlib>=3.5.1",
30+
"plotly>=5.3.1",
31+
"requests>=2.32.3",
32+
"influxdb-client>=1.48.0",
33+
"prophet>=1.1.6",
34+
]
35+
36+
[project.urls]
37+
Source = "https://github.com/BuildingEnergySimulationTools/tide"
38+
39+
40+
41+
[build-system]
42+
requires = ["flit_core<4"]
43+
build-backend = "flit_core.buildapi"
44+
45+
[tool.ruff]
46+
fix = true
47+
48+
[tool.ruff.format]
49+
docstring-code-format = true

requirements/install-min.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ scikit-learn==1.2.2
66
statsmodels==0.14.4
77
matplotlib==3.5.1
88
plotly==5.3.1
9-
requests==2.32.3
9+
requests==2.32.3
10+
prophet==1.1.6

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[flake8]
2-
max-line-length = 88
3-
extend-ignore = E203,B028
4-
51
[bumpversion]
62
current_version = 0.3.1
73
commit = True
@@ -13,6 +9,6 @@ tag_name = {new_version}
139
search = version="{current_version}"
1410
replace = version="{new_version}"
1511

16-
[bumpversion:file:corrai/__init__.py]
12+
[bumpversion:file:tide/__init__.py]
1713
search = __version__ = "{current_version}"
1814
replace = __version__ = "{new_version}"

setup.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)