plot categorical variable on x axis and integer on y axis?
I have a pandas DataFrame here:
Is there a way to plot a barchart stringed_seq on the x axis and sums and on the y axis, without discarding sums that are 0?
• 2,781 views
•
link
1 answer
df1 = TIS_dist_df[['stringed_seq','sums']]
df1[0:10].plot.barh()
plt.show()
• 0 views
•
link
Log in to answer this question.
