Community Data Science Course (Spring 2023)/Week 7 lecture notes: Revision history

From CommunityData

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 May 2023

  • curprev 01:0801:08, 9 May 2023Benjamin Mako Hill talk contribs 3,877 bytes +3,877 Created page with "== Getting Started == Pandas is a module which gives us access to two very powerful data structures: # Series: an one-dimenaional array of data # DataFrame: a way of storing tabular data Q: When do you use pandas and when do you not? == Getting setup == Importing pandas: * <code>import pandas as pd</code> * If your data has any numbers, it's very normal to also import a closely related package called numpy: <code>import numpy as np</code> Quick intro to Series:..."