-
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.
- Loading branch information
Showing
1 changed file
with
26 additions
and
1 deletion.
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 +1,26 @@ | ||
# SEND-Coding-Bootcamp | ||
# SEND-Coding-Bootcamp | ||
* Use Posit Cloud as environment for training (users have to setup a free account) | ||
* 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 |