-
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.
Making a 'SSECR scripts' folder with a dedicated README to house a sc…
…ript for generating example data
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SSECR Scripts | ||
|
||
It is periodically useful to have 'background scripts' for doing operations that support SSECR modules/topics but aren't valuable to include in the instructional materials in and of themselves. Such scripts live in this folder. | ||
|
||
For details on the purpose of a given script, open that script and check the internal documentation in the first few lines and consult the comments. |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## ------------------------------------------------ ## | ||
# Make Example Data | ||
## ------------------------------------------------ ## | ||
# Script author(s): Nick J Lyon | ||
|
||
## Purpose: | ||
# Create example datasets that exactly meet our needs in a given module/topic | ||
|
||
## ------------------------------------ ## | ||
# Housekeeping ---- | ||
## ------------------------------------ ## | ||
# Load needed libraries | ||
## install.packages("librarian") | ||
librarian::shelf(tidyverse) | ||
|
||
# Clear environment | ||
rm(list = ls()) | ||
|
||
## ------------------------------------ ## | ||
# Stats - Mixed-Effect Case Study ---- | ||
## ------------------------------------ ## | ||
# Simulate a tarantula dataset with nested structure | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# End ---- |