Questions tagged [plotly]
Plotly is a technical computing software solution, that develops online data analytics and visualization tools. Plotly provides online graphing, analytics, and statistics tools and scientific graphing libraries for Python, R, MATLAB, Perl, Julia, Arduino, and REST. The Products of Plotly are Dash, Dash Enterprise, Chart Studio Cloud, Chart Studio Enterprise, Data visualization libraries and Figure Converters for matplotlib and ggplot2.
22 questions
1vote
2answers
26views
Basis of plotting
I need some help in clearing out basics of plotting in various plotting packages. Specifically matplotlib, seaborn and plotly. Certain fundamental principles are always same across all packages. Can ...
1vote
0answers
17views
Plotting related multiple plots sharing an axis but each disjoint from each other
I want to plot related multiple plots sharing an axis but each disjoint from each other, i.e., same x-axis feature and scale but each of the other features has their own separate y-axis region with it'...
0votes
0answers
133views
Is there a way to achieve a transparent basemap with px.density_mapbox?
I'm creating a heatmap with Plotly density_mapbox, and I need the background to be fully transparent so that the heatmap can be exported to geotiff and used as an overlay for an external map. The ...
0votes
1answer
1kviews
Plot distribution of multi classification with features - Python
I have a multi-class classification problem, and continuous features, I want to visualize using python libraries (matplotlib, seaborn, plotly..) the target variable ( 4 classes ) with each given ...
1vote
2answers
6kviews
How can I remove legend from the figure in seaborn?
Here is my diagrams, I want to remove the labels of the second bar that is C1,C2,C3,C4,C5, because it is repeating.
1vote
0answers
166views
Plotly Express Choropleth Map Animation loading extremely long
I am making an animated choropleth map of regions in Czechia. When I run it without the animation, purely on one set of the data it takes 7.5 seconds. Here is the code for that. However when I tried ...
0votes
1answer
66views
Visualization library for networks and dependencies
this is a more general question asking about Python libraries that are able to showcase networks with following criterias: Different size of the nodes depending on a metric (e.g. sum of some variable ...
0votes
1answer
1kviews
Plotly: histogram with no fill color
I'm using Plotly's graphic_objects.Histogram. I am trying to draw several histograms on the same plot. I'm not satisfied with the results of the 'overlay' option. I would like to draw histograms with ...
2votes
1answer
7kviews
Plotly, scatter plot: what are the possible options for the dash entry in the line dictionary?
For example using some code like this one: fig.add_scatter(x=x, y=y, mode='lines', line=dict(dash='dot')) The possibilities I know of are 'lines', 'dash', 'dot' ...
1vote
0answers
117views
px.choropleth not showing any map, but just the legend!
I am unable to figure out why below code doesn't give proper o/p as maps, but just legends. *Summary_Table is my data_frame that contains 'id' and 'Total Deaths' and geojson_data contains the location ...
3votes
1answer
7kviews
How can I plot a 3d antenna radiation pattern in python?
I'm trying to plot a 3d antenna radiation pattern using python (or js if possible) but my code is not working. Here is what my dataset looks like: ...
2votes
1answer
3kviews
Plotly: what's the difference between ols and lowess trendlines
I'm plotting a dataset with a trendline, but using ols vs lowess gives me significantly different line shapes. I'm sure this is ...
1vote
0answers
232views
Axis date format for a surface plot in Plotly [closed]
My date format for my axis labels works fine if the chart type is heatmap or contour, but when I make a surface plot, my date format is not taken, and a default format is used instead. I want the date ...
0votes
1answer
9kviews
How to plot the bar charts of precision, recall, and f-measure?
I have used 4 machine learning models on a task and now I am struggling to plot their bar charts just like shown below in the image. I am printing classification report to get precision, recall etc. ...
1vote
1answer
54views