Skip to content

Commit 0f3641d

Browse files
author
Steve Baskauf
committed
update objectives
1 parent d9057c0 commit 0f3641d

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

script/codegraf/ees3/index.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,17 @@ We also introduce two kinds of *loops*, which are ways to step through *iterable
2222
- remove a dictionary value.
2323
- create a complex Python data structure by creating a list that contains lists or dictionaries as list items.
2424
- describe how a list of lists can be compared to cells of a table.
25-
- reference an item in a list of lists by correctly placing index numbers in square brackets.
26-
- describe how a list of dictionaries can be compared to cells of a table.
27-
- reference an item in a list of dictionaries by correctly placing the row index number and column key string in square brackets.
28-
- describe how ordering of columns differs between a list of lists and a list of dictionaries.
25+
- create a pandas Series from a Python dictionary.
26+
- reference a value in a pandas Series by its label index or integer position index.
27+
- reference a column in a pandas DataFrame by its label index.
28+
- reference a row in a pandas DataFrame by its label index or integer position index.
29+
- reference a cell in a pandas DataFrame by its row and column label indices.
30+
- load a spreadsheet from a URL into a pandas DataFrame.
31+
- use the `.head()` method to view the first few lines of a DataFrame.
32+
- preform vectorized operations on columns of a pandas DataFrame.
2933
- print the items on a list using a `for` loop.
3034
- explain how an *indented code block* is used to define sections of code.
35+
- use the `.iterrows()` method to iterate through the rows of a pandas DataFrame.
3136

3237

3338
## Links

0 commit comments

Comments
 (0)