Hi there,
I am plotting a Line + Scatter figure. In my xaxis I used the date but only around Christmas time in the last three years. When I plotted the figure, it is showing all the time from the beginning to the end, but I only wish to show the date I have in my figure but not other dates that even not appeared in my data. And the ticks/scale gap is the same value on the x-axis.
Here is the figure I plotted roughly:
the code is below:
df_all_Xms = df_all_Xms.reset_index()
fig_line = go.Figure()
fig_line.add_trace(go.Scatter(x=df_all_Xms[‘date_reported’],
y=df_all_Xms[‘sample_nos’],
mode=‘lines+markers’,
name=‘Sampling numbers during Xms’))
fig_line.add_trace(go.Scatter(x=df_all_Xms[‘date_reported’],
y=df_all_Xms[‘number_positive’],
mode=‘lines+markers’,
name=‘Positive numbers’))
fig_line.update_layout(
title_text=‘Sampling # against Pos # during Xms’,
)
fig_line.show()
Hopefully my question is clear to understand. Thanks for help!