multiple-axes Questions
2
Solved
I am working on plot with two axes which supports picking the lines.
I am using matplotlib and the the twinx() command. Unfortunately the pick event is only called for the artists in the top-most a...
Kirtle asked 5/7, 2020 at 10:22
2
Solved
I have the following dataframe:
land_cover 1 2 3 4 5 6 size
0 20 19.558872 6.856950 3.882243 1.743048 1.361306 1.026382 16.520265
1 30 9.499454 3.513521 1.849498 0.836386 0.659660 0.442690 8.652...
Siemens asked 10/8, 2018 at 10:29
3
When I set barmode='group' in Layout while trace2 = Bar(...,yaxis='y2'), this leads bars to be stacked or overlayed instead of grouping them. How can I group the bars while having multiple axes?
I...
Communard asked 14/3, 2015 at 6:14
2
Suppose I have the following code to create three side-by-side images:
n=10
x = np.random.rand(n,1)
y = np.random.rand(1,n)
z = np.random.rand(n,n)
fig, ax = plt.subplots(1, 3)
ax[0].imshow...
Berkelium asked 11/5, 2018 at 18:34
2
Solved
I seem to be having some difficulty finding the answer to this question online. The title is the basic question, but to be more specific I would like to have two x axes, one at the top of the figur...
Pretence asked 1/10, 2013 at 16:55
1
I have discreet data that looks like this:
height <- c(1,2,3,4,5,6,7,8)
weight <- c(100,200,300,400,500,600,700,800)
person <- c("Jack","Jim","Jill","Tess","Jack","Jim","Jill","Tess")
set...
Clearcole asked 4/9, 2017 at 23:55
1
Solved
Could someone please help me remove the gridlines that form the rings inside my polar plot. I'd like to keep (and even bold) the axes and add ticks for each of the axis labels.
Here is the code th...
Mccullers asked 9/10, 2015 at 2:17
2
Solved
I try to plot two polar plots in one figure. See code below:
fig = super(PlotWindPowerDensity, self).get_figure()
rect = [0.1, 0.1, 0.8, 0.8]
ax = WindSpeedDirectionAxes(fig, rect)
self.values...
Habitforming asked 25/10, 2013 at 12:38
2
Solved
Is there a way in Matlab to bring an axes to front without having Matlab perform a redraw (drawnow) implicitly?
Background to my question:
I am preparing a large figure with several subplots. In s...
Depersonalize asked 6/8, 2014 at 10:13
1
© 2022 - 2024 — McMap. All rights reserved.