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

Ask A Question

Stats

  • Questions 437k
  • Answers 438k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You're going to get a lot of different suggestions (mq,… May 15, 2026 at 4:26 pm
  • Editorial Team
    Editorial Team added an answer It depends what do you want to use it for.… May 15, 2026 at 4:26 pm
  • Editorial Team
    Editorial Team added an answer I don't like it. I think that class should be… May 15, 2026 at 4:26 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.