I have a data frame with head as:
m_srcaddr total_fwd_size total_rev_size
0 10.19.139.141 2479.335 175.000
1 10.19.139.143 888.141 92.442
2 10.19.139.144 1044.360 214.592
3 10.19.139.145 7.205 3.274
4 10.19.139.146 2756.958 294.006
.....
I am trying to plot m_srcaddr as x-axis and other 2 columns as y axis.
df.plot(x = 'm_srcaddr')
plt.xticks(rotation=90) #import matplotlib.pyplot as plt
plot is showing x axis (m_srcaddr) as interval of 5 like
10.19.139.141, 10.19.139.147, 10.19.139.152 ...
I am trying to use the xticks to show all x-axis data but its failing as m_srcaddr not integer.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…