I have a dataframe in my local streamlit app wich I have columns with a range value like column_a = [1,2]. Does the lib data_editor support this type of data?
import pandas as pd
import streamlit as stdata = [
{
“score_range”: [100,200],
“comp_range”: ,
“id”:0
}
]df = pd.DataFrame(data)
edited_df = st.data_editor(df, num_rows=“dynamic”, hide_index=False)
Running this application I’m not being able to edit the range columns in the interface. Is there any solutions for this case?