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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:33:19+00:00 2026-06-08T13:33:19+00:00

I have code which makes a plot of a two-dimensional array. Along the x-axis

  • 0

I have code which makes a plot of a two-dimensional array. Along the x-axis is just the index of my array, but I would like the x-axis to display the value that index represents.

Relevant code:

plt.imshow(data, aspect="auto")
plt.colorbar()
plt.show()

Where “data” is a 1000 by 200 array. So at the moment, the plot is created correctly, and the x-axis shows the index number of array (0-199).

But this index also corresponds to a date in another list that I have (date[]) of length 200. I want the date corresponding to the index to show on the x-axis, and not the index itself.

How can I fix this?

  • 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-08T13:33:30+00:00Added an answer on June 8, 2026 at 1:33 pm

    To put the x-ticks and the labels you can use

    plt.xticks(range(200),date)
    

    However the above will put too many ticks and labels. If you want to reduce the number of ticks to say 5, you can use

    idx=np.linspace(0,199,5).astype('int')
    plt.xticks(idx,[date[i] for i in idx])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So i have this code which makes a box, but want to make the
I have some code which makes use of Extension Methods, but compiles under .NET
I have the following in my HTML5 code which makes use of javascript: var
I have some code that makes heavy use of a thread pool, which I
I have code which needs to do something like this There is a list
I have code which looks like: private static DirectiveNode CreateInstance(Type nodeType, DirectiveInfo info) {
I have some IronPython code which makes use of XmlTextWriter which allows me to
I have following code which works as is, but does not work when cache=T
I have this code which successfully makes an HTTP request: //Successful request var requestInBytes
I just inherited some code which makes me uneasy: There is a testing library,

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.