We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf434d5 commit 98ccde6Copy full SHA for 98ccde6
1 file changed
_episodes/02-starting-with-data.md
@@ -18,7 +18,10 @@ objectives:
18
- "Perform basic mathematical operations and summary statistics on data in a Pandas DataFrame."
19
- "Create simple plots."
20
keypoints:
21
- - "FIXME"
+ - "Libraries enable you to add functions to Python. Pandas is a popular library for working with data."
22
+ - "A DataFrame can be used to access data either by column name, column integer, or row."
23
+ - "Aggregating data using the `groupby()` function enables you to generate useful summaries of data quickly."
24
+ - "Plots can be created from DataFrames or from subsets of data that have been generated with `groupby()`."
25
---
26
27
# Working With Pandas DataFrames in Python
0 commit comments