Skip to content

Commit

Permalink
Making a 'SSECR scripts' folder with a dedicated README to house a sc…
Browse files Browse the repository at this point in the history
…ript for generating example data
  • Loading branch information
njlyon0 committed May 16, 2024
1 parent 0af368a commit 10b20d8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/README.md
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.
30 changes: 30 additions & 0 deletions scripts/make-example-data.R
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 ----

0 comments on commit 10b20d8

Please sign in to comment.