-1
I’m at Jupyter Notebook working with Python.
My current dataframe is in the following format - data.Columns['name', 'filename', 'text'].
All columns are string type, wish, take the 'name' column and check that all of its contents are found exactly somewhere in the string of the 'text' column. I wish to have as a result all verified records whether found or not, as shown below.
Subsequently I wish to have this result exported to csv.
This code gives error. I have a script that gives me only the results found (date[['name' in x for x in data['text']]]), but I need all.
– Perciliano