@VAGR_ISK the results are stored in a dictionary that would will have to convert in oder to use it in KNIME. For example you will have to convert all columns to string since KNIME would not allow a mixture of types in one column. You could later convert that back to double if you need.
import pandas as pd
import numpy as np
import ppscore as pps
mat = pps.score(input_table_1, "x", "y")
output_table_1 = pd.DataFrame.from_dict(mat, orient='index', columns=['values']).transpose().applymap(str)
output_table_2 = pd.DataFrame.from_dict(mat, orient='index', columns=['values']).applymap(str)
kn_forum_49209_python_ppscore_pps.knwf (47.1 KB)