Informatics Practices

Which of the following function will produce a bar chart ?

  1. plot()
  2. bar()
  3. plotbar()
  4. barh()

PyPlot

1 Like

Answer

bar(), barh()

Reason — With Pyplot, a bar chart is created using bar() and barh() functions.

Answered By

3 Likes


Related Questions