Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyongjie committed Mar 28, 2022
1 parent 9af86db commit d7a43d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const advancedAnalyticsControls: ControlPanelSectionConfig = {
choices: [
['asfreq', 'Null imputation'],
['zerofill', 'Zero imputation'],
['linear', 'Linear imputation'],
['linear', 'Linear interpolation'],
['ffill', 'Forward values'],
['bfill', 'Backward values'],
['median', 'Median values'],
Expand Down
4 changes: 1 addition & 3 deletions superset/utils/pandas_postprocessing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@
"P1W/1970-01-04T00:00:00Z": "W",
}

RESAMPLE_METHOD = tuple(
["asfreq", "bfill", "ffill", "linear", "median", "mean", "sum",]
)
RESAMPLE_METHOD = ("asfreq", "bfill", "ffill", "linear", "median", "mean", "sum")

FLAT_COLUMN_SEPARATOR = ", "

Expand Down

0 comments on commit d7a43d0

Please sign in to comment.