Computer Science, asked by charusathya, 4 months ago

Navya has started an online business. A list stores the number of orders in last 6 months.Write a program to list this data on a bar chart and horizontal bar chart. Give appropriate names for x axis, y axis and colour the bar in pink.

Answers

Answered by amritaammu2609
0

Answer:

❓️❓️❓️❓️❓️❓️❓️❓️❓️ question

Answered by charvitalati44
0

Answer:

import matplotlib.pyplot as plt

import numpy as np

n = [ 50,68,74,96,135,178]

X = np.arange(1,7,1)

plt.barh( X , n )  

plt.show()

I hope this helps!!!!!!!

Similar questions