mirror of
https://github.com/apache/superset.git
synced 2026-05-08 09:25:56 +00:00
fix(post-processing): handle missing values in cumulative operator (#26429)
(cherry picked from commit ff025b78f3)
This commit is contained in:
committed by
Michael S. Molina
parent
2a30d59b05
commit
439979c73a
@@ -130,6 +130,11 @@ timeseries_df = DataFrame(
|
||||
data={"label": ["x", "y", "z", "q"], "y": [1.0, 2.0, 3.0, 4.0]},
|
||||
)
|
||||
|
||||
timeseries_with_gap_df = DataFrame(
|
||||
index=to_datetime(["2019-01-01", "2019-01-02", "2019-01-05", "2019-01-07"]),
|
||||
data={"label": ["x", "y", "z", "q"], "y": [1.0, 2.0, None, 4.0]},
|
||||
)
|
||||
|
||||
timeseries_df2 = DataFrame(
|
||||
index=to_datetime(["2019-01-01", "2019-01-02", "2019-01-05", "2019-01-07"]),
|
||||
data={
|
||||
|
||||
Reference in New Issue
Block a user