Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev polars #178

Merged
merged 48 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
1ad3c93
Update for front (#111)
armgilles Sep 26, 2024
d4839e7
Bump to version 1.2.2a (#112)
armgilles Sep 26, 2024
20fcff3
dev_pandas version 1.2.2a (#113)
armgilles Sep 27, 2024
20a1e35
Merge branch 'dev_pandas' of github.com:armgilles/vcub_keeper into de…
armgilles Sep 27, 2024
bcb86ef
Polars read activity data (#119)
armgilles Sep 27, 2024
26dcd2a
Polars get transaction out (#120)
armgilles Sep 27, 2024
1f00186
Migrate transactions_in in Polars #121
armgilles Sep 27, 2024
e0e9531
Update test #121
armgilles Sep 27, 2024
6e238dc
Update read_activity_vcub to fix mistake output_type default and type
armgilles Sep 27, 2024
8270a28
Polars transactions in (#123)
armgilles Sep 27, 2024
46bfbe0
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Sep 28, 2024
c440832
Polars get transactions all (#125)
armgilles Sep 28, 2024
5e1712e
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Sep 28, 2024
efccc3e
Polars transform json api bdx station data to df (#128)
armgilles Sep 30, 2024
6362298
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Sep 30, 2024
4e81203
Polars get encoding time (#131)
armgilles Oct 1, 2024
2eb89f8
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Oct 1, 2024
4a74453
Increase bench dataset (#134)
armgilles Oct 3, 2024
7410f7f
merging
armgilles Oct 3, 2024
6bd755b
merge from dev_pandas with #134
armgilles Oct 3, 2024
03d9839
Polars bigger dataset bench (#135)
armgilles Oct 3, 2024
3793058
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Oct 3, 2024
5841367
Polars get consecutive no transactions out (#132)
armgilles Oct 3, 2024
3ac4d0c
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Oct 3, 2024
e2aefaf
Polars read station profile (#138)
armgilles Oct 4, 2024
cfc2f27
Merge branch 'dev_polars' of github.com:armgilles/vcub_keeper into de…
armgilles Oct 4, 2024
d24fba4
Polars read station profile (#140)
armgilles Oct 7, 2024
e8ba1eb
Polars read time serie activity (#142)
armgilles Oct 7, 2024
03fd370
Polars read time serie activity (#143)
armgilles Oct 7, 2024
f15c810
Using custum breakpoint calcul, no more pandas cut and add unit test …
armgilles Oct 7, 2024
62da224
Bench pipeline transf (#155)
armgilles Oct 10, 2024
e8a8629
Merge branch 'dev_pandas' of github.com:armgilles/vcub_keeper into de…
armgilles Oct 10, 2024
17fd7e8
Merge branch 'dev_pandas' into dev_polars
armgilles Oct 10, 2024
c247257
Polars bench pipeline (#157)
armgilles Oct 10, 2024
25bc431
merging from dev_polars to have bench pipeline tests
armgilles Oct 10, 2024
15687d4
Try lazy + expression fonction to check perf bench #146 (#147)
armgilles Oct 16, 2024
47ef206
Update ML pipeple to Polars #162 (#163)
armgilles Oct 16, 2024
614f2f4
Fix new value status from API Bordeaux, improve mapping and test #165…
armgilles Oct 18, 2024
60afa5f
Polars viz (#167)
armgilles Oct 18, 2024
3fee3a1
Change date type into Bdx pipeline (unset time zone) #168) (#169)
armgilles Oct 22, 2024
ab1fa8c
Fix available bikes consecutive feat (#171)
armgilles Oct 22, 2024
cb5a1f6
try to fix problem with old lfs notebook error #172
armgilles Nov 8, 2024
7378bf3
try to fix problem with old lfs notebook error #172
armgilles Nov 8, 2024
983311c
Bump pyproject and add dep to polars to read from cloud (#175)
armgilles Nov 19, 2024
b7eaeeb
Add manifest for notebook (#176)
armgilles Nov 20, 2024
d08b5f9
Fix lfs (#177)
armgilles Nov 20, 2024
ba05626
typo
armgilles Nov 21, 2024
0139174
Merge branch 'dev_polars' of https://github.com/armgilles/vcub_keeper…
armgilles Nov 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
source = vcub_keeper
omit = tests/*, vcub_keeper/visualisation.py
omit = tests/*, src/vcub_keeper/visualisation.py

[report]
show_missing = True
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Projet
*.csv
*.bz2
*.parquet
*.h5
*.env
model
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exclude notebooks/*.ipynb
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Les données proviennent du travail de [Damien Garaud](https://twitter.com/jazzy

## Installation :

```pip install vcun_keeper[all]```
```pip install vcub_keeper[all]```

### Variable :

Expand Down
Loading