|
This post was updated on .
I have tried to iterate over a NumPy array containing the string for search. I can't append the returns of the FUnction call SNOMEDCT_US.Search() while iterating. can Some one help?
Code:
import pandas as pd
df=pd.read_csv("/content/results_duplicate_refined.csv")
entities=df.iloc[:, 1:2].values
for row in entities:
SNOMEDCT_US.search(row)
I want to print this or save the search result to a particular Numpy array or something like that. How can I do that?
|