-
Notifications
You must be signed in to change notification settings - Fork 20
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
Create all variables directly from connection and independent of dataframes #926
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #926 +/- ##
==========================================
- Coverage 98.76% 96.17% -2.59%
==========================================
Files 30 30
Lines 1210 1202 -8
==========================================
- Hits 1195 1156 -39
- Misses 15 46 +31 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Benchmark Results
Benchmark PlotsA plot of the benchmark results have been uploaded as an artifact to the workflow run for this PR. |
f52d260
to
fcf9833
Compare
# The logic: | ||
# - t_union has groups in order, then s:e ordered by s increasing and e decreasing | ||
# - in a group (asset, year, rep_period) we can take the first range then | ||
# - continue in the sequence selecting the next largest e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove or update
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
- 1:4 5:8 9:12
- 1:3 4:4 5:9 10:12
1 2 3 4
o o o o
o o o
o o o o
o o o o
o o o o o
o o o o
o o o
o o o o
o
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@suvayu check here
Separate creation of union and lowest resolution tables from storage_level_intra_rp creation. Closes #923
fcf9833
to
d173c99
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks! |
Blocked by #925
Create all variables with connection instead of dataframes variable.
With the
lookup
created in #925, this allow us toClose #923