adamerose / PandasGUI

A GUI for Pandas DataFrames
MIT No Attribution
3.15k stars 226 forks source link

Column contains value #201

Open arturmkr opened 2 years ago

arturmkr commented 2 years ago

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"

bawiek commented 1 year ago

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