plotly_express
plotly_express copied to clipboard
Plotly Express - Simple syntax for complex charts. Now integrated into plotly.py!
I get the error below when trying to add `marginal_x` to the "continuously-colored and labeled" example on this page https://plotly.com/python/2d-histogram-contour/ ```python import plotly.express as px df = px.data.tips() fig =...
Some one please give me an alternate plotly code for this one : sns.countplot(x='Census_ProcessorClass', hue='HasDetections',data=df_train) plt.show() both are int64
I really like how fast it is to do animation by date in plotly express, but I would like this animation slider to be also reflected on other graphs. Is...
Hello. At first, thank you for Plotly. Its great. Help me, if you can. ``` import pandas as pd from plotly.subplots import make_subplots import plotly.graph_objects as go my_months = [9,9,9,10,10,10,11,11,11]...
Hello, I am using plotly.express to create a density contour map. It works quite well, but I am wondering if there is a way to constrain the density range. That...
@nicolaskruchten Glad to meet you again:) I just found another problem: color legend cannot show corresponding color when the plot changes Here is my data just cover two floors: the...
`plotly.express` is now developed inside the `plotly.py` library, please open your issue on https://github.com/plotly/plotly.py/issues/new
while importing import plotly.express as px I'm getting error "cannot import name 'ensure_writable_plotly_dir'"
Step to reproduce: ``` import plotly.express as px tips = px.data.tips() tips = tips[tips["size"].isin([1,4,6])] fig = px.histogram(tips, x="size", y="tip", histfunc='count') fig.show() ``` output:  expect result:  Thanks.
I ran into this quite accidentally and am not sure whether this behaviour is mentioned in the documentation or not. This code produces the correct output as expected ```python px.histogram(data_frame=iris,...