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

  • Home
  • SEARCH
  • 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 1017723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:44:52+00:00 2026-05-16T10:44:52+00:00

I start using matplotlib a month ago, so I’m still learning. I’m trying to

  • 0

I start using matplotlib a month ago, so I’m still learning.
I’m trying to do a heatmap with matshow. My code is the following:

data = numpy.array(a).reshape(4, 4)  
cax = ax.matshow(data, interpolation='nearest', cmap=cm.get_cmap('PuBu'), norm=LogNorm())  
cbar = fig.colorbar(cax)

ax.set_xticklabels(alpha)  
ax.set_yticklabels(alpha)

where alpha is a model from django with 4fields: ‘ABC’, ‘DEF’, ‘GHI’, ‘JKL’

the thing is that I don’t know why, the label ‘ABC’ doesn’t appear, leaving the last cell without label.
If someone would have a clue how to modify my script in a way to appear the ‘ABC’ I would be grateful 🙂

  • 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-16T10:44:54+00:00Added an answer on May 16, 2026 at 10:44 am

    What’s happening is that the xticks actually extend outside of the displayed figure when using matshow. (I’m not quite sure exactly why this is. I’ve almost never used matshow, though.)

    To demonstrate this, look at the output of ax.get_xticks(). In your case, it’s array([-1., 0., 1., 2., 3., 4.]). Therefore, when you set the xtick labels, “ABC” is at <-1, -1>, and isn’t displayed on the figure.

    The easiest solution is just to prepend a blank label to your list of labels, e.g.

    ax.set_xticklabels(['']+alpha)
    ax.set_yticklabels(['']+alpha)
    

    As a full example:

    import numpy as np
    import matplotlib.pyplot as plt
    
    alpha = ['ABC', 'DEF', 'GHI', 'JKL']
    
    data = np.random.random((4,4))
    
    fig = plt.figure()
    ax = fig.add_subplot(111)
    cax = ax.matshow(data, interpolation='nearest')
    fig.colorbar(cax)
    
    ax.set_xticklabels(['']+alpha)
    ax.set_yticklabels(['']+alpha)
    
    plt.show()
    

    Matshow example

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

Sidebar

Ask A Question

Stats

  • Questions 511k
  • Answers 511k
  • 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 An object model should reflect the problem you're trying to… May 16, 2026 at 5:10 pm
  • Editorial Team
    Editorial Team added an answer narray NArray is an Numerical N-dimensional Array class. Supported element… May 16, 2026 at 5:10 pm
  • Editorial Team
    Editorial Team added an answer This took me a while to crack, so I thought… May 16, 2026 at 5:10 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

Related Questions

I am trying to adapt the underlying structure of plotting code (matplotlib) that is
I'm using Matplotlib to dynamically generate .png charts from a database. The user may
I want to start using Python for small projects but the fact that a
I am ready to start using SVN, but I have NO (as in the
I want to start using .NET 3.5 features in an app that is currently
Before I start using CORBA I want to know something. It would seem intuitive
i recently start using CodeIgniter as PHP MVC FrameWork , before CodeIgniter, i was
I am considering to start using Pexpect. On Pexpects homepage I find this: Q:
I would like to start using DSM, but not sure how to get started.
I decided to start using removeAllObjects so that I could re-use some of my

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.