PandasGUI icon indicating copy to clipboard operation
PandasGUI copied to clipboard

Column contains value

Open arturmkr opened this issue 2 years ago • 1 comments

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"

arturmkr avatar Apr 23 '22 09:04 arturmkr

Hi, You can use the pandas syntax: `my_column`.str.contains('This')

bawiek avatar Sep 13 '22 13:09 bawiek