Pandas Read Table

Hi knimers,

I like to read in table files via pandas extension.
how should I code the following code in line 42 (Picture) ?
->df = pd.read_table(r’input_table_1.copy()’) is not working…

before I used:
→ df = pd.read_csv(r’pathtofile.csv’) that worked quite well, but I like to give a certain table as input for the python script and not providing a certain path.

My workflow looks like this:
image

Many thanks in advance guys!

BR
Bastian

Think I got it,

changed the code:

for column in input_table_1[‘publication_number’]:
columnSeriesObj = input_table_1[‘publication_number’]

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.