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