Answers for "matplotlib boxplot change size of outliers"

0

matplotlib boxplot change size of outliers

import matplotlib.pyplot as plt
import numpy as np

box = plt.boxplot([np.random.randn(200), np.random.randn(200)], labels=["Var1_Name", "Var2_Name"],
                  notch=True, patch_artist=True,
                  flierprops={'marker': 'o', 'markersize': 10, 'markerfacecolor': 'fuchsia'})
Posted by: Guest on March-25-2022

Code answers related to "matplotlib boxplot change size of outliers"

Python Answers by Framework

Browse Popular Code Answers by Language