Attempting to do a line chart using fig to get axis labels. It renders the figure part but not the data (lines or markers). How can I get the data to display…
I don’t see any obvious problems with your code. Could you post an updated example that includes some sample example data for x0, x1, and z and a screenshot of the result you’re seeing? And it would also be helpful if you could put the code in a fenced code block (https://help.github.com/articles/creating-and-highlighting-code-blocks/) so that the markdown renderer doesn’t mess up the formatting (this way it’s possible to copy and paste the code and try it out). Thanks!
Hello, I’ve had the issue others have with Plotly rendering graphs a few times, recently I’ve noticed when I stopped the kernel in Jupyter Notebooks the traceback had “constructor=go.Scatter”, but my code is for a line graph. When I changed “line” to “scatter” in my code it rendered properly as a scatter.
My code for a line graph and the resulting Traceback:
fig = px.line(bb, x=‘eventTime’, y=‘user’, color=‘company_id’, labels={‘y’:’#users’})
fig.show()