Questions tagged [suptitle]

For questions about placing a title above all subplots of a plot

suptitle was originally a MATLAB Bioinformatics Toolbox function for placing a title above all subplots of a plot. The function has since been adopted by other languages, e.g., matplotlib.pyplot.suptitle in Python.

Use the suptitle tag for all questions related to placing a title above all subplots of a plot, regardless of programming language.

18 questions
0
votes
1 answer

suptitle Error using axes Invalid axes handle

I am trying to create histograms in a loop. I am creating two figures and want a suptitle above them, but when I do that the title of the subplots doesn't work anymore . This is my code suptitle('Observation') for i=1:c:b i MagObs1=[]; …
Jellyse
  • 839
  • 7
  • 22
0
votes
1 answer

How to manipulate properties of variable which is passed by string in suptitle?

I was wondering if I can manipulate properties of variable {count} after string in suptitle to change variable's color, location(by printing in next line center) and font size. So far I can print it out like this in middle above of…
Mario
  • 1,631
  • 2
  • 21
  • 51
-5
votes
1 answer

NameError in Python - suptitle not defined

fig = suptitle('image #{}'.format(num), fontsize=20) NameError: name 'suptitle' is not defined I already installed numpy, scipy and matplotlib and imported pylab but for some reason Python isn't recognizing the suptitle function.
hunter
  • 21
  • 2
1
2