Facet/trallis plots with different Y axes

Hi, everyone. It is discribed on the following page from manual how to plot facet/trallis charts: https://plotly.com/python/facet-plots/.
For example:

import plotly.express as px

df = px.data.stocks(indexed=True)
fig = px.line(df, facet_row="company")
fig.show()

But, in this example all the charts have the same X and Y axes. I need to have the code with similar functionality except for one thing - Y axes must be different. What do I have to do to get that?

1 Like

Hi,

Try this:

Fig.update_yaxes(matches=None)
1 Like