I am a student and I was working on some of my data. They are stored in a csv file with column names βxβ, βtβ, βy1β, βy2β.
When I plot t-y1 using scatter plot it works. For the box plot if I plot the entire dataset, it works too. But when I want to separate the t-y1 plots in colors (on in facet column) based on the entry in column βxβ, the plot shows nothing at all. Below I put the code and the plot I got from plotly. Here I put my dataset.
import pandas as pd
from plotly.offline import plot
import plotly.graph_objs as go
import plotly.express as px
from plotly.subplots import make_subplots
df=pd.read_csv(βMy_data.csvβ)
fig=px.scatter(df,x=βtβ,y=βy1β)
fig.update_layout(title=βMy Dataβ,xaxis_type=βlogβ,yaxis_type=βlinearβ)
plot(fig)
fig=px.box(df,x=βtβ,y=βy1β)
fig.update_layout(title=βMy Dataβ,xaxis_type=βlogβ,yaxis_type=βlinearβ)
plot(fig)
fig=px.box(df,x=βtβ,y=βy1β,color=βxβ)
fig.update_layout(title=βMy Dataβ,xaxis_type=βlogβ,yaxis_type=βlinearβ)
plot(fig)