Answers for "boxplot python"

0

python boxplot show mean

import matplotlib.pyplot as plt
import numpy as np

data_to_plot = np.random.rand(100,5)

fig = plt.figure(1, figsize=(9, 6))
ax = fig.add_subplot(111)    
bp = ax.boxplot(data_to_plot, showmeans=True)

plt.show()
Posted by: Guest on August-05-2020
2

python matplotlib boxplot

import numpy as np
import matplotlib.pyplot as plt

# Fixing random state for reproducibility
np.random.seed(19680801)

# fake up some data
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)
Posted by: Guest on July-13-2020
-1

boxplot python

import numpy as np
import matplotlib.pyplot
matrix=np.random.rand(10,10)
plt.boxplot(matrix)
Posted by: Guest on March-21-2020
0

sns.boxplot code

sns.boxplot("var")
Posted by: Guest on April-28-2020
-1

boxplot code

sns.boxplot("var")
Posted by: Guest on April-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language