is there a simple way to convert a dictionary of Objects into a Table which is needed to transport Data from one Widget to another?
I have a dictionary of measuringpoints with Lists of values and want to transport them form my own Widget to a 'Data Table Widget'.
I've tryed to convert the dictionary into a pandas Dataframe and after this convert the dataframe into a Table by using the following code Converting Pandas DataFrame to Orange Table. I can execute the code in PyCharm without errors but when I start it in Orange the converting of the dataframe fails and stops without sending any errors.
Or is there maby a better way to create Output Data from dictionaries or dataframes?