Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

bar plot matplotlib

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
langs = ['C', 'C++', 'Java', 'Python', 'PHP']
students = [23,17,35,29,12]
ax.bar(langs,students)
plt.show()
Comment

how to plotting bar on matplotlib

import matplotlib.pyplot as plt 

data = [5., 25., 50., 20.]
plt.bar(range(len(data)),data)
plt.show()

// to set the thickness of a bar, we can set 'width'
// plt.bar(range(len(data)), data, width = 1.)
Comment

matplotlib bar chart

import numpy as np
import matplotlib.pyplot as plt
 
  
# creating the dataset
data = {'C':20, 'C++':15, 'Java':30,
        'Python':35}
courses = list(data.keys())
values = list(data.values())
  
fig = plt.figure(figsize = (10, 5))
 
# creating the bar plot
# the format of the bar() method is: 
# plt.bar(x_value, y_value, color, width_of_bars_inches)
plt.bar(courses, values, color ='maroon',
        width = 0.4)
# x-axis label
plt.xlabel("Courses offered")
# y-axis label
plt.ylabel("No. of students enrolled")
# Title of the figure
plt.title("Students enrolled in different courses")
plt.show()
Comment

bar plot python

import numpy as np
import matplotlib.pyplot as plt
data = [[30, 25, 50, 20],
[40, 23, 51, 17],
[35, 22, 45, 19]]
X = np.arange(4)
fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
ax.bar(X + 0.00, data[0], color = 'b', width = 0.25)
ax.bar(X + 0.25, data[1], color = 'g', width = 0.25)
ax.bar(X + 0.50, data[2], color = 'r', width = 0.25)
Comment

bar plot python

import matplotlib.pyplot as plt
import numpy as np
plt.bar(np.arange(0,100),np.arange(0,100))
Comment

PREVIOUS NEXT
Code Example
Python :: how to extract numbers from a list in python 
Python :: pil image to numpy 
Python :: python if string is null or whitespace 
Python :: variable naming rule in python 
Python :: groupby year datetime pandas 
Python :: generic python 
Python :: convert pandas column type 
Python :: python horizontal line 
Python :: Import CSV Files into R Using fread() method 
Python :: how to take unknown number of inputs in python 
Python :: how to import file from a different location python 
Python :: how to run django tests 
Python :: len of int python 
Python :: Python DateTime add days to DateTime object 
Python :: timeit jupyter 
Python :: how to 404 custom page not found in django 
Python :: pandas df row count 
Python :: convex hull algorithm python 
Python :: dataframe choose random 
Python :: find the closest smaller value in an array python 
Python :: pdf to text python 
Python :: python kill process by name 
Python :: rename key in python dictionary 
Python :: python optionmenu tkinter 
Python :: play mp3 file python 
Python :: save and load a machine learning model using Pickle 
Python :: python yaml to dict 
Python :: creating venv on vscode linux 
Python :: get string until character python 
Python :: how to fill a list in python 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =