├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ └── update-citation-cff.yaml ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── bootEff-fun.R ├── data.R ├── helper-fun.R ├── semEff-fun.R ├── semEff-package.R └── stdEff-fun.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data └── shipley.rda ├── inst └── WORDLIST ├── man ├── Object.Type.Rd ├── Param.Type.Rd ├── R2.Rd ├── RVIF.Rd ├── VIF.Rd ├── avgEst.Rd ├── bootCI.Rd ├── bootEff.Rd ├── getData.Rd ├── getEff.Rd ├── getFamily.Rd ├── getX.Rd ├── getY.Rd ├── glt.Rd ├── pSapply.Rd ├── predEff.Rd ├── print.bootCI.Rd ├── print.semEff.Rd ├── rMapply.Rd ├── sdW.Rd ├── semEff-package.Rd ├── semEff.Rd ├── shipley.Rd ├── shipley.growth.Rd ├── shipley.sem.Rd ├── shipley.sem.boot.Rd ├── shipley.sem.eff.Rd ├── stdEff.Rd ├── summary.semEff.Rd ├── varW.Rd └── xNam.Rd ├── pkgdown └── _pkgdown.yml ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── semEff.Rproj └── vignettes ├── .gitignore ├── apa.csl ├── predicting-effects.Rmd ├── references.bib └── semEff.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/update-citation-cff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.github/workflows/update-citation-cff.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bootEff-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/bootEff-fun.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/data.R -------------------------------------------------------------------------------- /R/helper-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/helper-fun.R -------------------------------------------------------------------------------- /R/semEff-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/semEff-fun.R -------------------------------------------------------------------------------- /R/semEff-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/semEff-package.R -------------------------------------------------------------------------------- /R/stdEff-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/R/stdEff-fun.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/shipley.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/data/shipley.rda -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/Object.Type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/Object.Type.Rd -------------------------------------------------------------------------------- /man/Param.Type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/Param.Type.Rd -------------------------------------------------------------------------------- /man/R2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/R2.Rd -------------------------------------------------------------------------------- /man/RVIF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/RVIF.Rd -------------------------------------------------------------------------------- /man/VIF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/VIF.Rd -------------------------------------------------------------------------------- /man/avgEst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/avgEst.Rd -------------------------------------------------------------------------------- /man/bootCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/bootCI.Rd -------------------------------------------------------------------------------- /man/bootEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/bootEff.Rd -------------------------------------------------------------------------------- /man/getData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/getData.Rd -------------------------------------------------------------------------------- /man/getEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/getEff.Rd -------------------------------------------------------------------------------- /man/getFamily.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/getFamily.Rd -------------------------------------------------------------------------------- /man/getX.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/getX.Rd -------------------------------------------------------------------------------- /man/getY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/getY.Rd -------------------------------------------------------------------------------- /man/glt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/glt.Rd -------------------------------------------------------------------------------- /man/pSapply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/pSapply.Rd -------------------------------------------------------------------------------- /man/predEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/predEff.Rd -------------------------------------------------------------------------------- /man/print.bootCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/print.bootCI.Rd -------------------------------------------------------------------------------- /man/print.semEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/print.semEff.Rd -------------------------------------------------------------------------------- /man/rMapply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/rMapply.Rd -------------------------------------------------------------------------------- /man/sdW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/sdW.Rd -------------------------------------------------------------------------------- /man/semEff-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/semEff-package.Rd -------------------------------------------------------------------------------- /man/semEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/semEff.Rd -------------------------------------------------------------------------------- /man/shipley.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/shipley.Rd -------------------------------------------------------------------------------- /man/shipley.growth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/shipley.growth.Rd -------------------------------------------------------------------------------- /man/shipley.sem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/shipley.sem.Rd -------------------------------------------------------------------------------- /man/shipley.sem.boot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/shipley.sem.boot.Rd -------------------------------------------------------------------------------- /man/shipley.sem.eff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/shipley.sem.eff.Rd -------------------------------------------------------------------------------- /man/stdEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/stdEff.Rd -------------------------------------------------------------------------------- /man/summary.semEff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/summary.semEff.Rd -------------------------------------------------------------------------------- /man/varW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/varW.Rd -------------------------------------------------------------------------------- /man/xNam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/man/xNam.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /semEff.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/semEff.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/vignettes/apa.csl -------------------------------------------------------------------------------- /vignettes/predicting-effects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/vignettes/predicting-effects.Rmd -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/vignettes/references.bib -------------------------------------------------------------------------------- /vignettes/semEff.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphymv/semEff/HEAD/vignettes/semEff.Rmd --------------------------------------------------------------------------------