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)
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
Adjust space between two axes while keeping it constant on other axes
For some reason I couldn't find information on this (I'm pretty sure it exists somewhere), but in the following generic example, I would like to reduce the hspace between ax1 and ax2 while keeping the...
Jannik Kühn
Votes: 0
Answers: 1
How to add gridlines between each GridSpec subplot
I have a matplotlib gridspec plot as below:
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
fig2 = plt.figure(figsize=[8,8])
spec2 = gridspec.GridSpec(ncols=2, nrows=2, figure=...
Ailurophile
Votes: 0
Answers: 1