Untitled
unknown
plain_text
2 years ago
225 B
4
Indexable
import matplotlib.pyplot as plt
data = [17, 19, 18, 11, 10, 17, 20, 11, 12, 13, 10]
fig, ax = plt.subplots()
ax.boxplot(data, vert=False)
ax.set_title("Box-and-Whisker Plot")
ax.set_xlabel("Values")
plt.show()Editor is loading...