-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README.md to include workshop information
- Loading branch information
1 parent
4812e84
commit 89d840f
Showing
1 changed file
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
# SEND-Coding-Bootcamp | ||
* Use Posit Cloud as environment for training (users have to setup a free account) | ||
* Intro RStudio | ||
* Intro Slides | ||
* Body Weight Graph | ||
* Motivating Example: | ||
* Plot y = BW, x = DY, by SETCD/SEX | ||
* Grow the complexity of the plot over the session | ||
* Foundational Concepts: | ||
* Reading and writing data.frames | ||
* Columns and Rows (indexing) | ||
* | ||
* Logical Flow | ||
* Discuss installing/loading packages | ||
* Read BW XPT File | ||
* Use library(haven) and then convert to data.frame | ||
* Print table of BW data for an animal | ||
* plot(BWNOMDY, BWSTRESN) | ||
* ggplot(BW, aes(x = BWNOMDY, y = BWSTRESN)) + geom_point() | ||
* Read DM XPT File | ||
* Join BW and DM | ||
* BW_DM <- dplyr::left_join | ||
* ggplot(BW_DM, aes(x = BWNOMDY, y = BWSTRESN, color = SETCD, shape = SEX)) + geom_point() | ||
* Compute and plot group means | ||
|
||
* Dataset JSON <-> XPT | ||
* R Shiny | ||
* Quarto Documentation | ||
|
||
### Overview | ||
The three-day SEND Coding Bootcamp aims to help those work with SEND datasets become more productive by teaching basic coding and plotting skills. | ||
|
||
Over the course of three seperate hands-on coding workshop, participants will learn the basics of programming and plotting using the R programming language. The course will be oriented around SEND datasets and will including reading, writing, plotting, and manipulating SEND datasets stored in .xpt format. | ||
|
||
### Audience | ||
|
||
This workshop is aimed at those work with SEND datasets, so basic knowledge of the SEND standard is expected. No previous knowledge about programming or the R programming language is needed. | ||
|
||
### Dates | ||
|
||
The workshop will take place on three seperate sessions and will build on knowledge learned from prior lessons. The general outline of the course is as follows (but subject to change). | ||
|
||
* Day 1: Introduction to R Programming | ||
* Day 2: Basic Plotting with R | ||
* Day 3: Advance Plotting using ggplot | ||
* Day 4: Data analysis using the tidyverse | ||
|
||
### Software installation | ||
|
||
The course will be taught using the cloud-based computing environment on [Posit Cloud](https://posit.cloud/). Posit Cloud hosts R environments in a remote, cloud-based setting eliminating the need for the downloading and installation of software onto attendee's computer. Getting set up in the Posit Cloud will be done during the first session, users are expected to create an account prior to the first day. | ||
|
||
### Contact | ||
|
||
Interested in attending? Questions about content? Please email either [email protected] or [email protected]. | ||
|