To see the wrong Bar plot click here
我想绘制一个条形图,其中x_axis是价格而y_axis是价格间时间。但是价格是大量数据,所以在这个图中,s too much bars and labels, so they
重新相互重叠,不能read.I希望减少标签,但保持标准。
我怎么解决这个问题?
数据如下:
0.05 $ 1000
0.06 $ 1200
0.04 $ 1040
,代码是
# plot bar graph
plt.subplot(222)
ax2 = plt.gca() # get axis
plt.xlabel('Price / $')# set label
plt.ylabel('Interval / Second')
ax2.yaxis.get_major_formatter().set_powerlimits((0,1)) # set number
并使用Seaborn绘图
sns.barplot(df_sort['Price'],df_sort['Interval'],errwidth=1.0,palette="Blues_d",edgecolor='white')#plot