To visualize the data using histogram plot using python.
Load the data set from local memory.
Bind the data into the data frame.
Call the histogram plot method ax.hist()from matplotlib.pyplot.
#import library
import matplotlib.pyplot as plt
import pandas as pd
#read CSV file
data=pd.read_csv
(‘/home/soft27/soft27/Sathish/
Pythonfiles/Employee.csv’)
#create the Data frame
df=pd.DataFrame(data)
#initialize the figure object
fig=plt.figure()
ax = fig.add_subplot(1,1,1)
#calling the histogram plot method
ax.hist(df[‘Salary’])
plt.title(‘Employee Distribution’)
plt.xlabel(‘Age’)
plt.ylabel(‘Salary’)
plt.show()