Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8128715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T08:00:32+00:00 2026-06-06T08:00:32+00:00

Possible Duplicate: Is there a way of drawing a caption box in matplotlib Is

  • 0

Possible Duplicate:
Is there a way of drawing a caption box in matplotlib

Is it possible to add graph description under graph in pylab?

Let’s say that I plot the following graph:

import pylab

x = [1,2,3,2,4,5,6,4,7,8]

pylab.plot(x)
pylab.title('My Plot')
pylab.xlabel('My x values')
pylab.ylabel('My y values')

pylab.show()

I also want to insert a few lines that describe the graph, perhaps something like this (not real code):

pylab.description('Figure 1.1 is designed for me to learn basics of Pylab')

Is that possible?

Also, I am vague on differences between pylab and matplotlib, so if there is a solution that works when using matplotlib, it will probably work.

Thank You in Advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T08:00:34+00:00Added an answer on June 6, 2026 at 8:00 am

    figtext is useful for this since it adds text in the figure coordinates, that is, 0 to 1 for x and y, regardless of the axes. Here’s an example:

    from pylab import *
    
    figure()
    gca().set_position((.1, .3, .8, .6)) # to make a bit of room for extra text
    plot([1,2], [3,4])
    figtext(.95, .9, "This is text on the side of the figure", rotation='vertical')
    figtext(.02, .02, "This is text on the bottom of the figure.\nHere I've made extra room for adding more text.\n" + ("blah "*16+"\n")*3)
    xlabel("an interesting axis label")    
    show()
    

    enter image description here

    Here I’ve used axes.set_position() to make some extra room on the bottom of the figure by making the axes a bit smaller. Here I added room for lots of text and also so the text doesn’t bump into the axes label, though it’s probably a bit excessive.

    Although you asked for text on the bottom, I usually put such labels on the side, so they are more clearly notes and not part of the figure. (I’ve found it useful, for example, to have a little function that automatically puts the name of the file that generated each figure onto the figure.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Is there a way of drawing a caption box in matplotlib I
Possible Duplicate: Any way to add HttpHandler programatically in .NET? Is there a way
Possible Duplicate: Is there a way to add a badge to an application icon
Possible Duplicate: Is there any way to determine text direction from CultureInfo in asp.net?
Possible Duplicate: Is there a way to hide the scroll indicators in an UIScrollView?
Possible Duplicate: Is there a way to automatically update application on Android? As a
Possible Duplicate: Is there a way to automatically update application on Android? I have
Possible Duplicate: Is there a simple way of obtaining all object instances of a
Possible duplicate question: Is there a way to indefinitely pause a thread? In my
Possible Duplicate: Returning in a static initializer Is there a way to exit a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.