plot Questions
3
Solved
I have the following data set:
In[55]: usdbrl
Out[56]:
Date Price Open High Low Change STD
0 2016-03-18 3.6128 3.6241 3.6731 3.6051 -0.31 0.069592
1 2016-03-17 3.6241 3.7410 3.7449 3.6020 -3.16 0...
Phytogenesis asked 8/4, 2016 at 17:17
4
Solved
I want to be able to see lines (and points) that are ON THE 3D SURFACE on top of the surface (second image), not behind (first image).
This is my 3D function:
def f(x, y):
return np.sin(2*x) * ...
Hammonds asked 31/3, 2018 at 9:43
2
Solved
I'm attempting to create a faceted plot using seaborn in python, but I'm having issues with a number of things, one thing being rotating the x-axis labels.
I am currently attempting to use the fol...
Occident asked 5/2, 2020 at 13:55
4
I am using the following with corrplot:
require("corrplot") ## needs the corrplot package
corrplot(cor(lpp_axis1, lpp_axis2), method=c("number"), bg = "grey10",
addgrid.col = "gray50", tl.offset ...
Incitement asked 19/3, 2011 at 2:26
3
Solved
I want to create a figure with two y-axes and add multiple curves to each of those axes at different points in my code (from different functions).
In a first function, I create a figure:
import ...
Kinslow asked 8/3, 2017 at 14:53
3
Solved
I am trying to draw an ECDF of some data with a "confidence interval" represented via a shaded region using ggplot2. I am having trouble combining geom_ribbon() with stat_ecdf() to achieve the effe...
5
Solved
I'm currently using the plotly service to graph some water quality data. I've added some lines to represent the the various stages of water quality, with them shaded so they are green, yellow, and ...
19
Whenever I am trying to compile the following code to get a line graph shows some errors. But I don't know how to fix it. Here is my code :
import plotly.plotly as py
import plotly.graph_objs as go...
Arrange asked 1/3, 2017 at 1:45
2
Solved
I plot a lot of graphs in gnuplot. These graphs are based onn sensor readings from around the solar power system.
Each graph has needed to be updated by typing something like
load "solar
where...
4
Solved
When I plot something with contourf, I see at the bottom of the plot window the current x and y values under the mouse cursor.
Is there a way to see also the z value?
Here an example contourf:
im...
Blairblaire asked 9/4, 2012 at 23:21
3
Solved
I am working with the FacetGrid example presented here that results in the plot below. In my data set, there is quite a lot of plots, and it would be convenient to have the x axis labels repeated f...
Eucaine asked 5/9, 2018 at 9:58
10
Solved
I'm plotting two datasets with different units on the y-axis. Is there a way to make the ticks and gridlines aligned on both y-axes?
The first image shows what I get, and the second image shows wh...
Tuppeny asked 5/11, 2014 at 8:18
4
Solved
I got a line chart, with multiple lines that represent sine waves with different frequencies.
I want to take a look at a specific wave, with all the rest out of the graph. I know that I can click,...
4
Solved
Consider my series as below: First column is article_id and the second column is frequency count.
article_id
1 39
2 49
3 187
4 159
5 158
...
16947 14
16948 7
16976 2
16977 1
16978 1
1...
Chatter asked 29/5, 2016 at 20:32
5
Solved
Earlier I asked about creating a gradient of n values in base graphics (LINK). Now I'd like to create a gradient legend that goes with it. My ideal would be something like ggplot2's gradient legend...
4
Solved
How can I make a clockwise polar plot? Somebody ask a similar question here: How to make the angles in a matplotlib polar plot go clockwise with 0° at the top?, But I don't understand this:
im...
Benedictbenedicta asked 5/10, 2011 at 15:54
2
Solved
I'm trying to figure out how to annotate combined patchworks as if they were individual plots.
I've got one patchwork consisting of three combined plots and another single plot. The final composite...
2
Solved
How to add a superscript or a subscript to an axis label to a 3D plot in plotly?
I tried to use bquote, but it did not work. Googling did not bring much on the matter either.
Scavenged code:
li...
6
I am trying to use ggplot2 to create a performance chart with a log normal y scale. Unfortunately I'm not able to produce nice ticks as for the base plot function.
Here my example:
library(ggplot...
3
Solved
I have a boxplot generated with matplotlib:
However, I have no idea how to generate the legend. I get a warning saying:
Legend does not support handles for dict instances.
or
No artists with la...
Chema asked 28/11, 2017 at 10:13
3
Solved
I want to plot a radar chart with multiple scales on multiple axes using matplotlib. The official API example gives only one scale on one axis. (Scales are 0.2,0.4,0.6,0.8 in this example)
I want ...
Malachi asked 9/7, 2014 at 16:24
2
I'm trying to move the spines in a 3D matplotlib axes object.
This seems like a really simple issue, but I have not found any questions/answers that address this directly. I've included a list of ...
Ford asked 25/1, 2018 at 12:18
3
Solved
Please, find a data sample p below. I have produced the following ggsurvplot:
I would like to remove the encircled "Strata"-text from the legend, that prints automatically. I think it is redunda...
6
Solved
I have a 3 column matrix; plots are made by points based on column 1 and column 2 values, but colored based on column 2 (6 different groups). I can successfully plot all points, however, the last p...
2
Solved
I've done a plot, and have one small problem which drive me crazy with the legend part
I can't find a way to center the box in the legend.
x = seq(-4,4,length=200)
y = dnorm(x,mean=0.816783035,sd=0...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.