Skip to content

Commit

Permalink
differences for PR #619
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 7, 2024
1 parent c6f3472 commit cb1cb11
Show file tree
Hide file tree
Showing 16 changed files with 463 additions and 26 deletions.
2 changes: 1 addition & 1 deletion 01-starting-with-data.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Analyzing Patient Data
teaching: 45
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 02-func-R.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Creating Functions
teaching: 30
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 03-loops-R.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Analyzing Multiple Data Sets
teaching: 30
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 04-cond.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Making Choices
teaching: 30
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 05-cmdline.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Command-Line Programs
teaching: 30
exercises: 0
exercises: 50
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 06-best-practices-R.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Best Practices for Writing R Code
teaching: 10
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 07-knitr-R.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Dynamic Reports with knitr
teaching: 20
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 08-making-packages-R.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Making Packages in R
teaching: 30
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 10-supp-addressing-data.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Addressing Data
teaching: 20
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 11-supp-read-write-csv.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Reading and Writing CSV Files
teaching: 30
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 12-supp-factors.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Understanding Factors
teaching: 20
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 13-supp-data-structures.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Data Types and Structures
teaching: 45
exercises: 0
exercises: 10
source: Rmd
---

Expand Down
2 changes: 1 addition & 1 deletion 14-supp-call-stack.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: The Call Stack
teaching: 15
exercises: 0
exercises: 5
source: Rmd
---

Expand Down
95 changes: 95 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
#------------------------------------------------------------
# Values for this lesson.
#------------------------------------------------------------

# Which carpentry is this (swc, dc, lc, or cp)?
# swc: Software Carpentry
# dc: Data Carpentry
# lc: Library Carpentry
# cp: Carpentries (to use for instructor training for instance)
# incubator: The Carpentries Incubator
carpentry: 'swc'

# Overall title for pages.
title: 'Programming with R'

# Date the lesson was created (YYYY-MM-DD, this is empty by default)
created: '2014-12-18'

# Comma-separated list of keywords for the lesson
keywords: 'software, data, lesson, The Carpentries'

# Life cycle stage of the lesson
# possible values: pre-alpha, alpha, beta, stable
life_cycle: 'stable'

# License of the lesson materials (recommended CC-BY 4.0)
license: 'CC-BY 4.0'

# Link to the source repository for this lesson
source: 'https://github.com/swcarpentry/r-novice-inflammation'

# Default branch of your lesson
branch: 'main'

# Who to contact if there are any issues
contact: '[email protected]'

# Navigation ------------------------------------------------
#
# Use the following menu items to specify the order of
# individual pages in each dropdown section. Leave blank to
# include all pages in the folder.
#
# Example -------------
#
# episodes:
# - introduction.md
# - first-steps.md
#
# learners:
# - setup.md
#
# instructors:
# - instructor-notes.md
#
# profiles:
# - one-learner.md
# - another-learner.md

# Order of episodes in your lesson
episodes:
- 01-starting-with-data.Rmd
- 02-func-R.Rmd
- 03-loops-R.Rmd
- 04-cond.Rmd
- 05-cmdline.Rmd
- 06-best-practices-R.Rmd
- 07-knitr-R.Rmd
- 08-making-packages-R.Rmd
- 09-supp-intro-rstudio.Rmd
- 10-supp-addressing-data.Rmd
- 11-supp-read-write-csv.Rmd
- 12-supp-factors.Rmd
- 13-supp-data-structures.Rmd
- 14-supp-call-stack.Rmd
- 15-supp-loops-in-depth.Rmd

# Information for Learners
learners:

# Information for Instructors
instructors:

# Learner Profiles
profiles:

# Customisation ---------------------------------------------
#
# This space below is where custom yaml items (e.g. pinning
# sandpaper and varnish versions) should live


url: 'https://swcarpentry.github.io/r-novice-inflammation'
analytics: carpentries
lang: en
26 changes: 13 additions & 13 deletions md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2024-04-02"
"config.yaml" "c198bba3496d5a77c7b4ab59e81194f8" "site/built/config.yaml" "2024-04-02"
"index.md" "df0cbbfded289fe4a899db2c1655b342" "site/built/index.md" "2024-04-02"
"episodes/01-starting-with-data.Rmd" "32ebb9a53c8fac58d58a31ea346748cd" "site/built/01-starting-with-data.md" "2024-04-02"
"episodes/02-func-R.Rmd" "dfd6013d11abc9d57030e3cc65153297" "site/built/02-func-R.md" "2024-04-02"
"episodes/03-loops-R.Rmd" "5f4c204ffd96681509368665a212e66e" "site/built/03-loops-R.md" "2024-04-02"
"episodes/04-cond.Rmd" "6c75b64cafdd5473d6dff10b45c123b1" "site/built/04-cond.md" "2024-04-02"
"episodes/05-cmdline.Rmd" "cfcc57d0b46dfab9eb97670ed6e1aeaa" "site/built/05-cmdline.md" "2024-04-02"
"episodes/06-best-practices-R.Rmd" "4fcc83e4624a19927fd844634bda2062" "site/built/06-best-practices-R.md" "2024-04-02"
"episodes/07-knitr-R.Rmd" "9d72817e62024160b5b0c6a1353f236f" "site/built/07-knitr-R.md" "2024-04-02"
"episodes/08-making-packages-R.Rmd" "0086e377d3662a0ae4556dc518f7ff0a" "site/built/08-making-packages-R.md" "2024-04-02"
"episodes/01-starting-with-data.Rmd" "10215966f4a16b05c18f8846aa78003a" "site/built/01-starting-with-data.md" "2024-04-07"
"episodes/02-func-R.Rmd" "1511e77aabe3461ec7a60e01f5af2316" "site/built/02-func-R.md" "2024-04-07"
"episodes/03-loops-R.Rmd" "30ae05791e7e6f45a80602299b946c5a" "site/built/03-loops-R.md" "2024-04-07"
"episodes/04-cond.Rmd" "ec83429378fdc56ed6ee4040fcfa1a6d" "site/built/04-cond.md" "2024-04-07"
"episodes/05-cmdline.Rmd" "b58e9f32f2060f6816713631a7f45f8d" "site/built/05-cmdline.md" "2024-04-07"
"episodes/06-best-practices-R.Rmd" "2b538e741755bce248acf6c7bc8d2cbd" "site/built/06-best-practices-R.md" "2024-04-07"
"episodes/07-knitr-R.Rmd" "ea66052b534aa22f5ce98114040284ab" "site/built/07-knitr-R.md" "2024-04-07"
"episodes/08-making-packages-R.Rmd" "7364f3535040d79542fd2480faabbdd0" "site/built/08-making-packages-R.md" "2024-04-07"
"episodes/09-supp-intro-rstudio.Rmd" "83d1c7a48311042da41fbf464b5ea880" "site/built/09-supp-intro-rstudio.md" "2024-04-02"
"episodes/10-supp-addressing-data.Rmd" "fc4d0916fd5f1fcd1157fa5f67eaec66" "site/built/10-supp-addressing-data.md" "2024-04-02"
"episodes/11-supp-read-write-csv.Rmd" "e4aa25339f141964b4fc3bbc71fc0afb" "site/built/11-supp-read-write-csv.md" "2024-04-02"
"episodes/12-supp-factors.Rmd" "bbf554d32cbd7804cee26d4fbfda3d74" "site/built/12-supp-factors.md" "2024-04-02"
"episodes/13-supp-data-structures.Rmd" "a216f97ea2a128396ef980564fa9ca34" "site/built/13-supp-data-structures.md" "2024-04-02"
"episodes/14-supp-call-stack.Rmd" "b2c3fbd0925a07378d22fac31d5ae457" "site/built/14-supp-call-stack.md" "2024-04-02"
"episodes/10-supp-addressing-data.Rmd" "71662faa256dea6f332f43d1a09af711" "site/built/10-supp-addressing-data.md" "2024-04-07"
"episodes/11-supp-read-write-csv.Rmd" "08d4adb8cc09e9e59a0c97e69c9fe644" "site/built/11-supp-read-write-csv.md" "2024-04-07"
"episodes/12-supp-factors.Rmd" "3a8f6ee29b98ec8bf3381de6521eeba2" "site/built/12-supp-factors.md" "2024-04-07"
"episodes/13-supp-data-structures.Rmd" "06f3e116291d5dc30316242d8d66b53e" "site/built/13-supp-data-structures.md" "2024-04-07"
"episodes/14-supp-call-stack.Rmd" "27cec1aec9850786b13cc8778d16ffa8" "site/built/14-supp-call-stack.md" "2024-04-07"
"episodes/15-supp-loops-in-depth.Rmd" "30aaaba1714a9bf3af1d66994084263c" "site/built/15-supp-loops-in-depth.md" "2024-04-02"
"instructors/instructor-notes.md" "369bfb5e2ccabc8215f1876d4dbdaecf" "site/built/instructor-notes.md" "2024-04-02"
"learners/discuss.md" "a35ce041de4138b59c13712bdbc37064" "site/built/discuss.md" "2024-04-02"
Expand Down
Loading

0 comments on commit cb1cb11

Please sign in to comment.