Skip to content

Commit a9df54b

Browse files
authored
Update index.md
1 parent 431b275 commit a9df54b

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ The Python Intro for Libraries lesson had a major redesign on June 17, 2024. Thi
1010

1111
This lesson is an introduction to programming in Python for library and information workers with little or no previous programming experience. It uses examples that are relevant to a range of library use cases, and is designed as a prerequisite for other Python lessons that will be developed in the future (e.g., web scraping, APIs). The lesson uses the JupyterLab computing environment and Python 3.
1212

13+
## Learning Objectives
14+
15+
After attending this training, participants will be able to:
16+
17+
- Navigate the JupyterLab interface and run Python cells within a notebook.
18+
- Assign values to variables, identify data types, and display values in a Jupyter Notebook.
19+
- Create and manipulate lists in Python, including indexing, slicing, appending, and removing items to manage data collections effectively.
20+
- Call built-in Python functions, and use the help function to understand their usage and troubleshoot errors.
21+
- Use Python libraries like Pandas to import modules, load tabular data from CSV files, and perform basic data analysis.
22+
- Apply for loops to iterate over collections, using the accumulator pattern to aggregate values and trace variable states to predict loop outcomes.
23+
- Manipulate pandas DataFrames to select data, calculate summary statistics, sort data, and save results in various formats, demonstrating basic data handling and analysis proficiency.
24+
- Write Python programs using conditional logic with if, elif, and else statements, including Boolean expressions and compound conditions within loops.
25+
- Construct Python functions that encapsulate tasks, manage parameters, local, and global variables, and return values to enhance code modularity and readability.
26+
- Transform complex datasets into a tidy format using pandas functions like melt() for reshaping, group by () for aggregation, and to_datetime() for date handling. Address practical challenges and demonstrate the benefits of tidy data for analysis.
27+
- Create and customize data visualizations using Pandas and Plotly, generating various plot types (line, area, bar, histogram) to analyze trends and draw insights from time-series data.
28+
- Prepare for advanced Python topics such as web scraping and APIs.
29+
1330
:::::::::::::::::::::::::::::::::::::::::: prereq
1431

1532
## Prerequisites

0 commit comments

Comments
 (0)