@@ -13,16 +13,16 @@ Notes: In this module you will be introduced to dataframes, the Python Pandas pa
13
13
14
14
By the end of the module, students are expected to:
15
15
16
- - Describe the components of a Dataframe.
17
- - Read a standard ` .csv ` file using Pandas [ ` pd.read_csv() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html ) .
18
- - Load the ` pandas ` library into Python.
19
- - Demonstrate indexing and slicing with ` .loc[] ` and ` .iloc[] ` .
20
- - Demonstrate Selecting columns of a dataframe using ` df[] ` notation.
21
- - Obtain values from a dataframe using ` .loc[] ` .
22
- - Sort a dataframe using [ ` .sort_values() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.sort_values.html ) .
23
- - Create simple summary statistics using [ ` .describe() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.describe.html ) .
24
- - Construct simple visualizations using [ Altair] ( https://altair-viz.github.io/ ) .
25
- - Create a ` .csv ` file from a dataframe using [ ` .to_csv() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_csv.html ) .
16
+ - Describe the components of a Dataframe.
17
+ - Read a standard ` .csv ` file using Pandas [ ` pd.read_csv() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html ) .
18
+ - Load the ` pandas ` library into Python.
19
+ - Demonstrate indexing and slicing with ` .loc[] ` and ` .iloc[] ` .
20
+ - Demonstrate Selecting columns of a dataframe using ` df[] ` notation.
21
+ - Obtain values from a dataframe using ` .loc[] ` .
22
+ - Sort a dataframe using [ ` .sort_values() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.sort_values.html ) .
23
+ - Create simple summary statistics using [ ` .describe() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.describe.html ) .
24
+ - Construct simple visualizations using [ Altair] ( https://altair-viz.github.io/ ) .
25
+ - Create a ` .csv ` file from a dataframe using [ ` .to_csv() ` ] ( https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_csv.html ) .
26
26
27
27
Notes:
28
28
0 commit comments