PandasGUI
PandasGUI copied to clipboard
Column contains value
Is it possible to filter data by containing string value?
For example, having following data in the my_column
:
"Example 1"
"This is example 1"
"This is"
I would like to do "This" in my_column
, so result is:
"This is example 1"
"This is"
Hi,
You can use the pandas syntax:
`my_column`.str.contains('This')