Hello,
Im working with 2 Dataframes and want to creat a subset of Dataframe1 in Dataframe2.:
Dataframe2 = Dataframe1[(Dataframe1.index == 'simple')]['product_type']
Dataframe2 delivers:
Out[20]:
Series([], Name: product_type, dtype: object)
How can I make an Output to see the Dataframe?
Kind regards
Andreas
Hello,
Im working with 2 Dataframes and want to creat a subset of Dataframe1 in Dataframe2.:
Dataframe2 = Dataframe1[(Dataframe1.index == 'simple')]['product_type']
Dataframe2 delivers:
How can I make an Output to see the Dataframe?
Kind regards
Andreas