Instead of plotly express line, I could use scatter, which seems to be much faster. However, with scatter, it is not possible to plot groups as with line_group. Thus, it results in one series with “jumping” lines and it is not possible to distinguish between individual runs anymore. How could line_group considered in scatter?
Example with scatter:
fig = px.scatter(error_per_type, y=“value”, facet_col=“eval_type”, facet_row=“data_set”, color=“est_type”, hover_name=“est_type”, render_mode=fig_renderer)
fig.update_traces(mode=“lines+markers”, line=dict(width=1), marker=dict(size=3), connectgaps=True)
fig.update_layout(height=fig_height, legend_title_text=“”)