Script Python sin importar biblioteca de Knime

Hola MartelKhan,

he visto tu workflow. Como dicho en mi post antes, hay que executar la función:

#import ...
input_table = knio.input_tables[0].to_pandas()

def rm_main(input_table):
    writer=...
    ...


rm_main(input_table) # <-- tienes que executar

Tambíen podrias escribirlo sin el método.

Steffen

3 Likes