Hey! I have a problem when trying to run the following minimal example:
import pandas as pd
import plotly.express as px
df = pd.DataFrame({'y': [1, 2], 'numeric': [5, 10], 'string': ['A', 'B']})
fig = px.scatter(df, y="y", x=df.columns, facet_col="variable")
fig.show()
I get the following error: โPlotly Express cannot process wide-form data with columns of different type.โ which does not make sense since i am trying to plot EACH dataframe column separately (e.g. there is no actual mixing of data types required for the final plot)