box plot in python matplotlib code example
Example 1: python matplotlib boxplot
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(19680801)
spread = np.random.rand(50) * 100
center = np.ones(25) * 50
flier_high = np.random.rand(10) * 100 + 100
flier_low = np.random.rand(10) * -100
data = np.concatenate((spread, center, flier_high, flier_low))
fig1, ax1 = plt.subplots()
ax1.set_title('Basic Plot')
ax1.boxplot(data)
Example 2: box plot python code
import pandas as pd
import matplotlib.pyplot as plt
% matplotlib inline
df = pd.read_csv("tips.csv")
print(df.head())
df.boxplot(by ='day', column =['total_bill'], grid = False)