mirror of
https://github.com/apache/superset.git
synced 2026-05-10 18:35:40 +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
8db06b4cb2
commit
c8c8136ac3
@@ -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