Skip to content

Commit

Permalink
Update README.md to include workshop information
Browse files Browse the repository at this point in the history
  • Loading branch information
russodanielp authored Aug 18, 2024
1 parent 4812e84 commit 89d840f
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions README.md
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].

0 comments on commit 89d840f

Please sign in to comment.