Home > Mobile >  Draw multiple csv files in a html page using plotly
Draw multiple csv files in a html page using plotly

Time:06-19

I want to draw multiple CSV files on an HTML page with fig = make_subplots(rows=.., cols=..), would you please advise me?

df1 = pd.read_csv('first_input.csv')
fig1 = px.scatter(df, x="...", y="...", color="..")

df2 = pd.read_csv('first_input.csv')
fig2 = px.scatter(df, x="...", y="...", color="..")

CodePudding user response:

Unfortunately plotly subplots do not directly support plotly.express figures as explained in the documentation enter image description here

  • Related