Pandas plot show X axis values December 23, 2020 Get link Facebook X Pinterest Email Other Apps Try to answerPandas plot show X axis valuesdf = pd.DataFrame({ "name": ["Mark", "Arya", "Praveena"], "age": [34, 1, 31]})df.plot.bar(x="name")plt.tight_layout()plt.show() Comments
Comments
Post a Comment