Skip to content

Commit

Permalink
reformat and check backend
Browse files Browse the repository at this point in the history
  • Loading branch information
jitingxu1 committed May 28, 2024
1 parent 70c5ef7 commit afd29f5
Show file tree
Hide file tree
Showing 3 changed files with 182 additions and 107 deletions.
99 changes: 69 additions & 30 deletions docs/step_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,24 @@ DiscretizeKBins:
strategy: quantile
n_bins: 5

HandleUnivariateOutliers:
configurations:
- name: z-score
config:
method: z-score
- name: IQR
config:
method: IQR

DropZeroVariance:
configurations:
- name: numeric
- name: int
config:
inputs: numeric
- name: string
inputs: integer
- name: float
config:
inputs: floating
- name: str
config:
inputs: string

Expand All @@ -24,99 +36,126 @@ FillNA:
config:
inputs: floating
fill_value: 0
- name: integer
- name: int
config:
inputs: integer
fill_value: 0
- name: string
- name: str
config:
inputs: string
fill_value: "NULL"

ImputeMode:
configurations:
- name: numeric
- name: int
config:
inputs: integer
- name: float
config:
inputs: numeric
- name: string
inputs: floating
- name: str
config:
inputs: string

ExpandDate:
configurations:
- name: day, month, year
- name: d
config:
inputs: date
components:
- day
- name: w
config:
inputs: date
components:
- week
- month
- year
- name: month
- name: m
config:
inputs: date
components:
- month
- name: day of week
- name: y
config:
inputs: date
components:
- year
- name: dow
config:
inputs: date
components:
- dow
- name: day of year
- name: doy
config:
inputs: date
components:
- doy

ExpandDateTime:
configurations:
- name: year, month, day
- name: ms
config:
inputs: timestamp
components:
- millisecond
- name: s
config:
inputs: timestamp
components:
- month
- year
- hour
- minute
- second
- name: minute, second
- name: m
config:
inputs: timestamp
components:
- minute
- second
- name: day of week
- name: d
config:
inputs: timestamp
components:
- day
- name: week
config:
inputs: timestamp
components:
- week
- name: mon
config:
inputs: timestamp
components:
- month
- name: y
config:
inputs: timestamp
components:
- year
- name: dow
config:
inputs: timestamp
components:
- dow
- name: day of year
- name: doy
config:
inputs: timestamp
components:
- doy

ExpandTime:
configurations:
- name: hour
- name: h
config:
inputs: time
components:
- hour
- name: minute
- name: m
config:
inputs: time
components:
- minute
- name: second
- name: s
config:
inputs: time
components:
- hour
- minute
- second
- millisecond
- name: millisecond
- name: ms
config:
inputs: time
components:
Expand Down
Loading

0 comments on commit afd29f5

Please sign in to comment.