Python|Jupyter notebook

Question

write a function to construct bar plot

in progress 0
razack_ar 4 years 1 Answer 974 views Member 3

Answer ( 1 )

  1. import pandas,numpy,matplot.lib libraries
    plt.bar(df.xxx, df.yyy)

    plt.title(‘Graph Title’)
    plt.ylabel(‘Y axis’)
    plt.xlabel(‘X axis’)

    plt.show()

Leave an answer

Browse
Browse