python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How do I remove labels from one axis in a subplot?
I am using Python 3.9 on MacOS. Shortly, I have to make a plot with 4 subplots, and they share axis. The code looks like this:
#take some data
gs = gridspec.GridSpec(2, 2, height_ratios = [3, 1])
ax0...
Alessandro Ruggieri
Votes: 0
Answers: 1
Plotly subplots of boxplot in for-loop Python
How can I make subplots by using a for loop when the traces for each individual subplot are already created using a for loop, what I got so far:
import plotly.express as px
import plotly.io as pio
im...
Jas
Votes: 0
Answers: 1
plotly make_subplots how to use specs parameter
I am trying to create a figure with 2 subplots (rows=2,cols=1)
Out of these, i want the first subplot which will be the first row plot to have secondary_y = True spec.
And the 2nd row plot need not ha...
asimo
Votes: 0
Answers: 1
Too much space between subplots with gridspec
I am trying to make a figure with a grid of 12 plots on the left and one larger plot on the right. The problem is that matplotlib adds far too much space between the small subplots. How can I get rid ...
Onno Eberhard
Votes: 0
Answers: 2