Skip to content

Commit

Permalink
update objectives
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Baskauf committed Mar 5, 2024
1 parent d9057c0 commit 0f3641d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions script/codegraf/ees3/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ We also introduce two kinds of *loops*, which are ways to step through *iterable
- remove a dictionary value.
- create a complex Python data structure by creating a list that contains lists or dictionaries as list items.
- describe how a list of lists can be compared to cells of a table.
- reference an item in a list of lists by correctly placing index numbers in square brackets.
- describe how a list of dictionaries can be compared to cells of a table.
- reference an item in a list of dictionaries by correctly placing the row index number and column key string in square brackets.
- describe how ordering of columns differs between a list of lists and a list of dictionaries.
- create a pandas Series from a Python dictionary.
- reference a value in a pandas Series by its label index or integer position index.
- reference a column in a pandas DataFrame by its label index.
- reference a row in a pandas DataFrame by its label index or integer position index.
- reference a cell in a pandas DataFrame by its row and column label indices.
- load a spreadsheet from a URL into a pandas DataFrame.
- use the `.head()` method to view the first few lines of a DataFrame.
- preform vectorized operations on columns of a pandas DataFrame.
- print the items on a list using a `for` loop.
- explain how an *indented code block* is used to define sections of code.
- use the `.iterrows()` method to iterate through the rows of a pandas DataFrame.


## Links
Expand Down

0 comments on commit 0f3641d

Please sign in to comment.