I have a numpy array with 4 columns. The first column is text.
I want to retrieve every row in the array where the first column contains a substring.
Example: if the string I'm searching for is "table", find and return all rows in the numpy array whose first column contains "table."
I've tried the following:
rows = nparray[searchString in nparray[:,0]]
but that doesn't seem to work