Dear Team,
I need to plot a pivot chart(multi index) using plotly.
Currently I ploted using pandas plot.When I did a background study of differnt plotting tools,I feel plotly is good for this.
Below is my code I currently used.
multi_index = pd.pivot_table(df_new, index = [‘Device_ID’, ‘Temp’ ,‘Supply’],columns = ‘Frequency’, values = ‘NoiseLevel’,)
multi_index.plot(kind=‘line’)
May I know how to plot my pivot table (multi_index) using plotly.
Regards
HARI