Hi!
I am working with streamlit-aggrid. It is a fantastic tool.
I think I have to ask this question to @PablocFonseca. Is it possible to know what variables and conditions are used when filtering a dataframe?
- Let me suppose I have a dataframe with
age
column. - I display it with streamlit-aggrid.
- After that, I filter people whose age is greater than 18.
Is it possible that, apart form getting the data, to obtain a list with the conditions used? In this case, I would obtain something like: [(age
, greater than
, 18
)]
Thanks!