Skip to content

Quarto mod5 #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,28 @@ website:
- text: '   7.1. Exercises'
href: modules/module4/module4-24-practice_operations_with_dataframe_columns.qmd
- href: modules/module4/module4-25-what_did_we_just_learn.qmd
- section: "**Module 5: Making Choices and Repeating Iterations**"
contents:
- href: modules/module5/module5-00-module_learning_outcomes.qmd
- href: modules/module5/module5-01-making_choices_with_conditional_statements.qmd
- text: '   1.1. Exercises'
href: modules/module5/module5-02-quick_questions_with_conditionals.qmd
- href: modules/module5/module5-06-repeated_iterations_(loops).qmd
- text: '   2.1. Exercises'
href: modules/module5/module5-07-repeated_iterations_questions.qmd
- href: modules/module5/module5-09-range_dictionaries_and_comprehensions.qmd
- text: '   3.1. Exercises'
href: modules/module5/module5-10-range_questions.qmd
- href: modules/module5/module5-13-nested_loops.qmd
- text: '   4.1. Exercises'
href: modules/module5/module5-14-nested_loop_questions.qmd
- href: modules/module5/module5-16-repeated_iterations_with_conditions.qmd
- text: '   5.1. Exercises'
href: modules/module5/module5-17-conditional_loop_questions.qmd
- href: modules/module5/module5-19-functions.qmd
- text: '   6.1. Exercises'
href: modules/module5/module5-20-function_questions.qmd
- href: modules/module5/module5-23-what_did_we_just_learn.qmd

# Since we are declaring options for two formats here (html and revealjs)
# each qmd file needs to include a yaml block including which format to use for that file.
Expand Down
29 changes: 29 additions & 0 deletions modules/module5/module5-00-module_learning_outcomes.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
format:
html:
page-layout: full
---

# 0. Module Learning Outcomes

::: {.panel-tabset .nav-pills}

## Video

<iframe
class="video"
src="https://www.youtube.com/embed/w7cfM6ReOzU?start=0&end=50&rel=0"
title="Module 5 Video - Module Learning Outcomes"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>

## Slides

<iframe
class="slide-deck"
src="slides/module5_00.html"
></iframe>

:::
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
format:
html:
page-layout: full
---

# 1. Making Choices with Conditional Statements

::: {.panel-tabset .nav-pills}

## Video

<iframe
class="video"
src="https://www.youtube.com/embed/yz6Wwa2MkQA?start=6&end=619&rel=0"
title="Module 5 Video - Making Choices with Conditional Statements"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>

## Slides

<iframe
class="slide-deck"
src="slides/module5_01.html"
></iframe>

:::
Loading
Loading