├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── CONDUCT.md ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── Interplot.R ├── Interplot_default.R ├── Interplot_mi.R ├── Interplot_mlm.R ├── Interplot_mlmmi.R ├── Interplot_plot.R └── replicated_file_ks.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── dev ├── interplot_test.R ├── jss │ ├── LICENSE │ ├── _extensions │ │ └── jss │ │ │ ├── _extension.yml │ │ │ ├── _extensions │ │ │ └── quarto-ext │ │ │ │ └── fancy-text │ │ │ │ ├── _extension.yml │ │ │ │ └── fancy-text.lua │ │ │ ├── jss.bst │ │ │ ├── jss.cls │ │ │ ├── jss.lua │ │ │ ├── jsslogo.jpg │ │ │ └── partials │ │ │ ├── _print-address.tex │ │ │ ├── _print-author.tex │ │ │ ├── before-body.tex │ │ │ └── title.tex │ ├── jss.bst │ ├── jss.cls │ ├── jss_interplot.bib │ ├── jss_manuscript.pdf │ ├── jss_manuscript.qmd │ └── jsslogo.jpg ├── plot-by-category.R ├── plot-by-category.html ├── practice.R ├── predprob_mlm.R └── runBeforeRelease.R ├── docs ├── 404.html ├── CONDUCT.html ├── LICENSE-text.html ├── articles │ ├── index.html │ ├── interplot-vignette.html │ └── interplot-vignette_files │ │ ├── figure-html │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-14-2.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-19-1.png │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png │ │ └── header-attrs-2.7 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── Rplot002.png │ ├── index.html │ ├── interplot-1.png │ ├── interplot-2.png │ ├── interplot.default.html │ ├── interplot.html │ ├── interplot.lmerMod.html │ ├── interplot.lmmi-1.png │ ├── interplot.lmmi.html │ ├── interplot.mlmmi.html │ └── interplot.plot.html └── sitemap.xml ├── interplot.Rproj ├── man ├── interplot.Rd ├── interplot.default.Rd ├── interplot.lmerMod.Rd ├── interplot.lmmi.Rd ├── interplot.mlmmi.Rd └── interplot.plot.Rd └── vignettes ├── interplot-vignette.R ├── interplot-vignette.Rmd ├── interplot-vignette.html ├── vignette.bib └── vignette.bib.bak /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | inst/doc/*.html linguist-documentation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: Frederick Solt, Yue HU 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Interplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot.R -------------------------------------------------------------------------------- /R/Interplot_default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot_default.R -------------------------------------------------------------------------------- /R/Interplot_mi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot_mi.R -------------------------------------------------------------------------------- /R/Interplot_mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot_mlm.R -------------------------------------------------------------------------------- /R/Interplot_mlmmi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot_mlmmi.R -------------------------------------------------------------------------------- /R/Interplot_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/Interplot_plot.R -------------------------------------------------------------------------------- /R/replicated_file_ks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/R/replicated_file_ks.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/cran-comments.md -------------------------------------------------------------------------------- /dev/interplot_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/interplot_test.R -------------------------------------------------------------------------------- /dev/jss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/LICENSE -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/_extension.yml -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/_extensions/quarto-ext/fancy-text/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/_extensions/quarto-ext/fancy-text/_extension.yml -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/_extensions/quarto-ext/fancy-text/fancy-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/_extensions/quarto-ext/fancy-text/fancy-text.lua -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/jss.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/jss.bst -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/jss.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/jss.cls -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/jss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/jss.lua -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/jsslogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/jsslogo.jpg -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/partials/_print-address.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/partials/_print-address.tex -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/partials/_print-author.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/partials/_print-author.tex -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/partials/before-body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/partials/before-body.tex -------------------------------------------------------------------------------- /dev/jss/_extensions/jss/partials/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/_extensions/jss/partials/title.tex -------------------------------------------------------------------------------- /dev/jss/jss.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jss.bst -------------------------------------------------------------------------------- /dev/jss/jss.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jss.cls -------------------------------------------------------------------------------- /dev/jss/jss_interplot.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jss_interplot.bib -------------------------------------------------------------------------------- /dev/jss/jss_manuscript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jss_manuscript.pdf -------------------------------------------------------------------------------- /dev/jss/jss_manuscript.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jss_manuscript.qmd -------------------------------------------------------------------------------- /dev/jss/jsslogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/jss/jsslogo.jpg -------------------------------------------------------------------------------- /dev/plot-by-category.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/plot-by-category.R -------------------------------------------------------------------------------- /dev/plot-by-category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/plot-by-category.html -------------------------------------------------------------------------------- /dev/practice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/practice.R -------------------------------------------------------------------------------- /dev/predprob_mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/predprob_mlm.R -------------------------------------------------------------------------------- /dev/runBeforeRelease.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/dev/runBeforeRelease.R -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/interplot-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette.html -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-14-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-14-2.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/interplot-vignette_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/articles/interplot-vignette_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/interplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot-1.png -------------------------------------------------------------------------------- /docs/reference/interplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot-2.png -------------------------------------------------------------------------------- /docs/reference/interplot.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.default.html -------------------------------------------------------------------------------- /docs/reference/interplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.html -------------------------------------------------------------------------------- /docs/reference/interplot.lmerMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.lmerMod.html -------------------------------------------------------------------------------- /docs/reference/interplot.lmmi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.lmmi-1.png -------------------------------------------------------------------------------- /docs/reference/interplot.lmmi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.lmmi.html -------------------------------------------------------------------------------- /docs/reference/interplot.mlmmi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.mlmmi.html -------------------------------------------------------------------------------- /docs/reference/interplot.plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/reference/interplot.plot.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /interplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/interplot.Rproj -------------------------------------------------------------------------------- /man/interplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.Rd -------------------------------------------------------------------------------- /man/interplot.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.default.Rd -------------------------------------------------------------------------------- /man/interplot.lmerMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.lmerMod.Rd -------------------------------------------------------------------------------- /man/interplot.lmmi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.lmmi.Rd -------------------------------------------------------------------------------- /man/interplot.mlmmi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.mlmmi.Rd -------------------------------------------------------------------------------- /man/interplot.plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/man/interplot.plot.Rd -------------------------------------------------------------------------------- /vignettes/interplot-vignette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/vignettes/interplot-vignette.R -------------------------------------------------------------------------------- /vignettes/interplot-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/vignettes/interplot-vignette.Rmd -------------------------------------------------------------------------------- /vignettes/interplot-vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/vignettes/interplot-vignette.html -------------------------------------------------------------------------------- /vignettes/vignette.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/vignettes/vignette.bib -------------------------------------------------------------------------------- /vignettes/vignette.bib.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammo3182/interplot/HEAD/vignettes/vignette.bib.bak --------------------------------------------------------------------------------