Skip to content

Commit

Permalink
differences for PR #128
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 20, 2024
1 parent 812e5e6 commit 7b1c229
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,24 @@ This lesson is an introduction to programming in Python for library and informat

2. Learners must install Python and JupyterLab, and download the dataset that will be used in the lesson, before the workshop begins.

Please see setup instructions below for details.
Please see <a href="#installing-python-using-anaconda">setup instructions below</a> for details.


::::::::::::::::::::::::::::::::::::::::::::::::::

## Learning Objectives

After attending this training, participants will be able to:

- Navigate the JupyterLab interface and run Python cells within a notebook.
- Assign values to variables, identify data types, and display values in a Jupyter Notebook.
- Create and manipulate lists in Python, including indexing, slicing, appending, and removing items to manage data collections effectively.
- Call built-in Python functions, and use the help function to understand their usage and troubleshoot errors.
- Use Python libraries like Pandas to import modules, load tabular data from CSV files, and perform basic data analysis.
- Apply 'for' loops to iterate over collections, using the accumulator pattern to aggregate values and trace variable states to predict loop outcomes.
- Manipulate pandas DataFrames to select data, calculate summary statistics, sort data, and save results in various formats, demonstrating basic data handling and analysis proficiency.
- Write Python programs using conditional logic with 'if', 'elif', and 'else' statements, including Boolean expressions and compound conditions within loops.
- Construct Python functions that encapsulate tasks, manage parameters, local, and global variables, and return values to enhance code modularity and readability.
- Transform complex datasets into a tidy format using pandas functions like 'melt()' for reshaping, 'groupby()' for aggregation, and 'to_datetime()' for date handling. Address practical challenges and demonstrate the benefits of tidy data for analysis.
- 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.
- Prepare for advanced Python topics such as web scraping and APIs.
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2023-05-08"
"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2023-05-08"
"config.yaml" "751228ef986d86881e913e9993d4e229" "site/built/config.yaml" "2024-06-17"
"index.md" "9f67ac3e582ca26f647adbc0e15b2357" "site/built/index.md" "2024-06-17"
"index.md" "20e6aecbfd8d4d1ed2cdf54532a936e4" "site/built/index.md" "2024-08-20"
"episodes/getting-started.md" "1c763fb6812cdc1d23ed9a106dab301c" "site/built/getting-started.md" "2024-08-20"
"episodes/variables.md" "b4410937474e0325bdd6b68a39d0b1b5" "site/built/variables.md" "2024-06-17"
"episodes/lists.md" "b4549b23dd5e7fcbcc7eadae039f6686" "site/built/lists.md" "2024-06-17"
Expand Down

0 comments on commit 7b1c229

Please sign in to comment.