Sort By
Most Recent
7 Articles
Jan 27, 2023
Python lists store an ordered collection of items which can be of different types. After defining a list, it’s possible to update the individual items in a list. Here’s how.
Jan 27, 2023
This Python dictionary tutorial covers how to define and access values in a dictionary, how to iterate through a dictionary and various dictionary methods.
Nov 29, 2022
Principal component analysis (PCA) in Python can be used to speed up model training or for data visualization. This tutorial covers both using scikit-learn.
Oct 31, 2022
A z-table, or standard normal table, reveals what percentage of values fall below a certain z-score in a normal distribution. Here’s how to use one and create your own.
Aug 09, 2022
Boxplots are graphs that tell you how your data’s values are spread out. Here’s how to read a boxplot and even create your own.
Jul 29, 2022
The empirical rule, also known as the 68-95-99.7 rule, represents the spread of data within a normal distribution. Here’s what you need to know.
Jul 28, 2022
Train test split is a model validation procedure that reveals how your model performs on new data. Here’s how to apply it.