Implement base missing values strategies #3
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/missing-values"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. 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.
@@ -18,3 +14,3 @@
if uploaded_file is not None:
st.session_state.data = pd.read_csv(uploaded_file, sep=separator, header=0 if has_header else 1)
st.session_state.data = pd.read_csv(uploaded_file)
st.session_state.original_data = st.session_state.data
working_data => orignal data