Friday, November 1, 2019

Codementor: Understanding Boxplots

The image above is a boxplot. A boxplot is a standardized way of displaying the distribution of data based on a five number summary ("minimum", first quartile (Q1), median, third quartile (Q3), and "maximum"). It can tell you about your outliers and what their values are. It can also tell you if your data is symmetrical, how tightly your data is grouped, and if and how your data is skewed. This tutorial will include: What is a boxplot? Understanding the anatomy of a boxplot by comparing a boxplot against the probability density function for a normal distribution. How do you make and interpret boxplots using Python?

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...