iwantcoding.com
🔥 Daily 👥 Rooms 🏆 Top Log in Sign up
« Previous

NumPy/Pandas HOME

Welcome to the iwantcoding.com NumPy & Pandas Tutorial. NumPy + Pandas are the foundation of Python data work. Fast n-dimensional arrays, expressive tabular DataFrames, and an ecosystem that plugs into every plotting, ML, and stats library you’ll touch.

What this tutorial covers

ChapterYou will learn
NumPyndarray, dtypes, creation, indexing / slicing, broadcasting, reshape, ufuncs, aggregations, np.random, linear algebra.
Pandas BasicsSeries, DataFrame, read_csv / to_csv / Parquet, loc / iloc, filtering, assigning columns, missing data, dtypes, apply.
Pandas Powergroupby, merge / join / concat, pivot / melt, time series, rolling windows, categorical, .str, plotting, performance.
ExamplesCheatsheet, runnable snippets, quiz, exercises, bootcamp, certificate.

Who this is for

  • Data analysts & scientists.
  • ML engineers wrangling features before training.
  • Backend devs writing analytics jobs.
How to use this tutorial: read the chapter, run the example with Try it Yourself », do the exercise, then take the quiz at the bottom. Hit Mark complete when you're done — the sidebar will track your progress.

Example

Example
import numpy as np
import pandas as pd
print(np.__version__, pd.__version__)
Try it Yourself »

Discussion

Loading…

« Previous