#!/usr/bin/env python # coding: utf-8 # In[ ]: flex_orientation = "rows" flex_author = "built using jupyter-flex" flex_source_link = "https://github.com/danielfrg/jupyter-flex/blob/master/examples/getting-started/two-rows.ipynb" flex_include_source = True # In[ ]: import plotly.express as px # In[ ]: df = px.data.iris() # In[ ]: fig = px.scatter(df, x="sepal_width", y="sepal_length") fig.show() # ### Second plot # In[ ]: fig = px.scatter(df, x="petal_width", y="petal_length") fig.show() # ## Column # ### Another plot # In[ ]: fig = px.scatter(df, x="sepal_length", y="petal_length") fig.show() # In[ ]: