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 709513
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:30:40+00:00 2026-05-14T04:30:40+00:00

Basically, when generating plots with matplotlib, The scale on the y-axis goes into the

  • 0

Basically, when generating plots with matplotlib, The scale on the y-axis goes into the millions. How do I turn on digit grouping (i.e. so that 1000000 displays as 1,000,000) or turn on the decimal separator?

  • 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-05-14T04:30:40+00:00Added an answer on May 14, 2026 at 4:30 am

    I don’t think there’s a built-in function to do this. (That’s what i thought after i read your Q; i just checked and couldn’t find one in the Documentation).

    In any event, it’s easy to roll your own.

    (Below is a complete example–ie, it will generate an mpl plot with one axis having commified tick labels–although five lines of code are all you need to create custom tick labels–three (including import statement) for the function used to create the custom labels, and two lines to create the new labels and place them on the specified axis.)

    # first code a function to generate the axis labels you want 
    # ie, turn numbers greater than 1000 into commified strings (12549 => 12,549)
    
    import locale
    locale.setlocale(locale.LC_ALL, 'en_US')
    fnx = lambda x : locale.format("%d", x, grouping=True)
    
    from matplotlib import pyplot as PLT
    import numpy as NP
    
    data = NP.random.randint(15000, 85000, 50).reshape(25, 2)
    x, y = data[:,0], data[:,1]
    
    fig = PLT.figure()
    ax1 = fig.add_subplot(111)
    ax1.plot(x, y, "ro")
    default_xtick = range(20000, 100000, 10000)
    
    # these two lines are the crux:
    # create the custom tick labels
    new_xtick = map(fnx, default_xtick)
    # set those labels on the axis
    ax1.set_xticklabels(new_xtick)
    
    PLT.show()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, I'm trying to tap into the Soap pipeline in .NET 2.0 - I
Basically I’ve heard that certain conditions will cause .NET to blow past the finally
Basically I'm trying to accomplish the same thing that mailto:bgates@microsoft.com does in Internet Explorer
Basically what I want to do it this: a pdb file contains a location
Basically, something better than this: <input type=file name=myfile size=50> First of all, the browse
Basically I have some code to check a specific directory to see if an
Basically I'm going to go a bit broad here and ask a few questions
Basically, I would like a brief explanation of how I can access a SQL
Basically I am trying to restart a service from a php web page. Here
Basically I want to know how to set center alignment for a cell using

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.