Course Content
Learning Statistics with Python
2. Mean, Median and Mode with Python
3. Variance and Standard Deviation
4. Covariance vs Correlation
Learning Statistics with Python
Explore the Data Set
In this section and next, we will work with Seaborn visualization and manipulate datasets using pandas and NumPy. Therefore, to succed in this course, I strongly recommend taking the following courses:
Task
- Read the CSV file and assign it to the
data
variable. - Display the first five observations of the dataset stored in the
data
variable. - Create a
histplot
with the following attributes:- Set the dataset to
data
. - Set
'body_mass_g'
for the X-Axis. - Set the
kde
parameter toTrue
.
- Set the dataset to
Everything was clear?
Section 5. Chapter 1