Skip to main content

11 docs tagged with "Pandas"

DataFrames — loading, cleaning, and analysing tabular data.

View all tags

Cleaning Data

Filling and dropping missing values, removing duplicates, and converting types back after the fix.

Correlation and Covariance

Measuring whether two variables move together — the correlation scale, why covariance can't be compared, and what correlation misses.

Descriptive Statistics

Mean, median, mode, range, variance, standard deviation and quartiles — what each one tells you and when it misleads.

Inspecting Data

head, tail, shape, dtypes, info and describe — the first six things to run on any new DataFrame.

Loading and Preparing Data

Why read_csv is not a neutral loader, the missingness it silently fails to catch, a pre-flight audit that catches it, and whether to convert to NumPy at all.

Missing Values

Why a value is missing decides what you may do about it — MCAR, MAR and MNAR, what mean imputation costs a distribution, when a smarter imputer pays, and the fit/transform contract that keeps it honest.

Series and DataFrames

The two pandas structures — a labelled 1-D Series and a 2-D DataFrame — and how the index changes everything.

The Toolkit and the Pipeline

The five Python libraries that do the work, how they stack, scikit-learn's fit/predict/transform contract, and the seven-step pipeline every project follows.