plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
Currently, strip/box/violin plots only work with categorical/discrete colormaps. This is sufficient for the violins and boxes but for the points that can be included in all three plots, it would...
Describe your context Please provide us your environment, so we can easily reproduce the issue. replace the result of pip list | grep dash below dash 2.4.1 dash-bootstrap-components 1.0.0 dash-core-components...
Thank you for plotly.py, it's definitely worked well for us in our app! We're deploying our app's backend to AWS lambda, packaging dependencies in a "layer" which has a 256MB...
My code : pointclouds = pointclouds.detach().cpu().subsample(max_points_per_pointcloud) verts = pointclouds.points_packed() features = pointclouds.features_packed() color = None if features is not None: if features.shape[1] == 4: # rgba template = "rgb(%d, %d,...
I have a 3D bin packing model which uses plotly to draw the output graph. I noticed that with 600+items being ploted, it takes a long time to generate the...
Modified example from tutorial : ```py df = px.data.tips() fig = px.pie(df, values='tip', names='day', color_discrete_map={'Thur':'lightcyan', 'Fri':'cyan', 'Sat':'royalblue', 'Sun':'darkblue'}) fig.show() ``` will not color the pie chart according to values specified...
Like these Microsoft plots available: https://docs.microsoft.com/en-us/power-bi/visuals/desktop-ribbon-charts Literally just an implementation of the chart type with the options described in the Microsoft docs :-)
Same issue as https://github.com/dandi/dandi-cli/pull/998. If versioneer is installed on the system, by appending our copy to the import path, we're going to end up colliding and mixing-and-matching. We always want...
Here is a list of colors matching nicely together, to be used for the tutorials. MidnightBlue / LightSkyBlue Aquamarine / LightSeaGreen Orange / Gold DarkBlue / LightPink DarkBlue / RoyalBlue...
Below is a minimal example, where using a slider to show different traces will delete another trace. The example plots a grid of points and uses a slider to interactively...