Edit Template

Matplotlib Box Plot in Hindi

Box Plot

Box Plot एक statistical plot है जो data का distribution, spread और outliers show करता है। इसमे एक box, एक median line और whiskers (जो min और max को show करते है) होता है। इसका ज्यादा use एक data variability और outliers को detect करने में किया जाता है।

matplotlib box plot

How to draw Box Plot in Matplotlib

Matplotlib में boxplot() function का use करके Box plot को बनाया जाता है।

Important Parameters of boxplot() Function

notch : ये अगर  “True” होता है तो median line के around notch दिखाता है।

For Example: plt.boxplot(data, notch=True)

 

vert : ये अगर  “True” होता है तो vertical box plot होता है, और अगर  “False” होता है तो horizontal box plot होता है।

For Example: plt.boxplot(data, vert=False)

Add a comment...

Sign up to track your learning

Login to continue your learning tracking

To reset your password, please enter your email address or username below.

Scroll to Top