Issue
I have a dataframe dd
containing 84 rows and 3 columns.
Now I want to plot an Area Plot with it, and use its index as xticks, so I do the following:
dd.plot(kind='area')
plt.show()
(P.S. I dont have enough reputation to post a picture, so I put this link here.)
It turns out that some xticks are hidden automatically: there should be 84 xticks, but only 9 of them are shown (seems to be hidden automatically).
I found a similar question here, but when I tried the method mentioned in the link, I got an CnoversionError
:
ConversionError: Failed to convert value(s) to axis units: Index(['!', '"', '#', '$', '%', '&', ''', '(', ')', '*', '+', ',', '-', '.',
'/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<',
'=', '>', '?', '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', '[', '\', ']', '^', '_', '`', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't'],
dtype='object')
I noticed that the difference between my question and the link above is that the index of my DataFrame has a dtype object
(they are string), and I found that if I change the index to a list of int, the error does go away.
The code to reproduce the Error:
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
dd=pd.DataFrame(np.random.rand(84,3),index=[chr(ascii) for ascii in range(33,33+84)])
dd.plot(kind='area',xticks=dd.index)
plt.show()
Thanks for your kindly reply in advance!
Solution
dd=pd.DataFrame(np.random.rand(84,3),index=[chr(ascii) for ascii in range(33,33+84)])
dd.plot(kind='area')
plt.xticks(range(0,len(dd.index)), dd.index)
plt.show()
Answered By - Diziet Asahi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.