Implement base missing values strategies #3
Merged
bastien.ollier
merged 4 commits from feature/missing-values
into main
10 months ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'feature/missing-values'
Deleting a branch is permanent. It CANNOT be undone. Continue?
This step mutates the dataframe, so it will always operate a copy of the original dataframe.
Missing values may be replaced by the mean/median/mod or be simply dropped.
if uploaded_file is not None:
st.session_state.data = pd.read_csv(uploaded_file)
st.session_state.working_data = st.session_state.data
working_data => orignal data
e255c67972
into main 10 months agoReviewers
e255c67972
.