File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,17 @@ We also introduce two kinds of *loops*, which are ways to step through *iterable
22
22
- remove a dictionary value.
23
23
- create a complex Python data structure by creating a list that contains lists or dictionaries as list items.
24
24
- 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.
29
33
- print the items on a list using a ` for ` loop.
30
34
- 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.
31
36
32
37
33
38
## Links
You can’t perform that action at this time.
0 commit comments