Skip to content

Commit e1ffe61

Browse files
20230203 - petersenlab package
1 parent 0d1f73b commit e1ffe61

129 files changed

Lines changed: 11197 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.Rbuildignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
^renv$
2+
^renv\.lock$
3+
^.*\.Rproj$
4+
^\.Rproj\.user$
5+
^LICENSE\.md$

.Rprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
######################
2+
# OS generated files
3+
######################
4+
.DS_Store
5+
.DS_Store?
6+
._*
7+
.Spotlight-V100
8+
.Trashes
9+
ehthumbs.db
10+
Thumbs.db
11+
12+
######################
13+
# R generated files
14+
######################
15+
16+
# History files
17+
.Rhistory
18+
.Rapp.history
19+
20+
# Session Data files
21+
.RData
22+
.Ruserdata
23+
24+
# Example code in package build process
25+
*-Ex.R
26+
27+
# Output files from R CMD build
28+
/*.tar.gz
29+
30+
# Output files from R CMD check
31+
/*.Rcheck/
32+
33+
# RStudio files
34+
.Rproj.user/
35+
.Rproj.user
36+
37+
# produced vignettes
38+
vignettes/*.html
39+
vignettes/*.pdf
40+
41+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
42+
.httr-oauth
43+
44+
# knitr and R markdown default cache directories
45+
/*_cache/
46+
/cache/
47+
48+
# Temporary files created by R markdown
49+
*.utf8.md
50+
*.knit.md
51+
.Rproj.user
52+
53+
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
54+
rsconnect/

DESCRIPTION

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Package: petersenlab
2+
Type: Package
3+
Title: Package of R Functions for the Petersen Lab
4+
Version: 0.1.2-9010
5+
Authors@R: person("Isaac T.", "Petersen",
6+
email = "isaac-t-petersen@uiowa.edu",
7+
role = c("aut", "cre"),
8+
comment = c(ORCID = "0000-0003-3072-6673"))
9+
Maintainer: Isaac T. Petersen <isaac-t-petersen@uiowa.edu>
10+
Imports: stats, graphics, utils, nlme, Hmisc, digest, dplyr, ggplot2, lavaan,
11+
mitools, mix, mvtnorm, psych, stringr, xtable, grDevices, plyr,
12+
reshape2, RColorBrewer, viridisLite
13+
Description: This R package is a collection of functions that are widely used
14+
in the Petersen Lab.
15+
URL: https://github.com/DevPsyLab/petersenlab
16+
License: CC BY 4.0 + file LICENSE
17+
Encoding: UTF-8
18+
LazyData: true
19+
RoxygenNote: 7.2.1

0 commit comments

Comments
 (0)