Libraries - pandas Flashcards

1
Q

Import the pandas library

A

import pandas as pd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Store the data from a csv file called “stats.csv” (which is saved in the same directory as the script) and store it in the variable “df”

“df” stands for DataFrame

A

df = pd.read_csv(“stats.csv”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

pd.read_csv(“example”.csv)

Explain the data structure pandas uses to store the data from “example.csv”

A

pandas ESSENTIALLY uses a dictionary where column headers are the keys, and the values of each key are a List of the data from the “rows” under each key.

However, pandas also assigns an index number to each of the items in each List of data.

Essentially you just need to remember that the “keys” are like the column letters in Excel, and the index numbers assigned to the values are like the row numbers in Excel (tho index # starts from “0”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A pandas DataFrame is stored in varable “df”

Preview the first 5 “rows” in the terminal

A

print(df.head())

This print only to “top” 5 rows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A pandas DataFrame is stored in varable “df”

Preview the last 5 “rows” in the terminal

A

print(df.tail())

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A pandas DataFrame in variable “df” has a date column with the key-header “date”

Convert this date column to the datetime formatt

A

df[‘date’] = pd.to_datetime(df[‘date’])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A pandas DataFrame in variable “df” has a date column with the key-header “date”

The date column has been converted to datetime

Print all the month numbers to the terminal

A

df[‘date’].dt.month

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A pandas DataFrame in variable “df” has a date column with the key-header “date”

The date column has been converted to datetime

Create a new column called “month” showing the month name only

A

df[‘month’] = df[‘date’].dt.month_name()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly