├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── docs ├── .gitignore ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── index.html │ └── lecturenotes │ │ ├── css │ │ └── preamble.css │ │ ├── lecturenotes.html │ │ └── lecturenotes_files │ │ ├── figure-html │ │ └── mpg-1.png │ │ ├── kePrint-0.0.1 │ │ └── kePrint.js │ │ └── lightable-0.0.1 │ │ └── lightable.css ├── authors.html ├── deps │ ├── bootstrap-5.1.0 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── data-deps.txt │ └── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map ├── extra.css ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── figures │ │ ├── knitted-html.png │ │ ├── knitted-pdf.png │ │ └── mind-blown.gif │ └── index.html ├── samples │ ├── css │ │ └── preamble.css │ ├── lecturenotes.Rmd │ ├── lecturenotes.html │ ├── lecturenotes.pdf │ ├── lecturenotes_files │ │ ├── figure-html │ │ │ └── mpg-1.png │ │ └── figure-latex │ │ │ └── mpg-1.pdf │ └── tex │ │ ├── mytemplate.tex │ │ └── preamble.tex ├── search.json └── sitemap.xml ├── inst └── rmarkdown │ └── templates │ ├── lecturenotes-lean │ ├── skeleton │ │ ├── css │ │ │ └── preamble.css │ │ ├── skeleton.Rmd │ │ └── tex │ │ │ ├── mytemplate.tex │ │ │ └── preamble.tex │ └── template.yaml │ └── lecturenotes │ ├── skeleton │ ├── css │ │ └── preamble.css │ ├── skeleton.Rmd │ └── tex │ │ ├── mytemplate.tex │ │ └── preamble.tex │ └── template.yaml ├── lecturenotes.Rproj ├── man └── figures │ └── mind-blown.gif └── pkgdown └── extra.css /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Grant McDermott 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/lecturenotes/css/preamble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/lecturenotes/css/preamble.css -------------------------------------------------------------------------------- /docs/articles/lecturenotes/lecturenotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/lecturenotes/lecturenotes.html -------------------------------------------------------------------------------- /docs/articles/lecturenotes/lecturenotes_files/figure-html/mpg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/lecturenotes/lecturenotes_files/figure-html/mpg-1.png -------------------------------------------------------------------------------- /docs/articles/lecturenotes/lecturenotes_files/kePrint-0.0.1/kePrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/lecturenotes/lecturenotes_files/kePrint-0.0.1/kePrint.js -------------------------------------------------------------------------------- /docs/articles/lecturenotes/lecturenotes_files/lightable-0.0.1/lightable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/articles/lecturenotes/lecturenotes_files/lightable-0.0.1/lightable.css -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.1.0/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/bootstrap-5.1.0/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/figures/knitted-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/reference/figures/knitted-html.png -------------------------------------------------------------------------------- /docs/reference/figures/knitted-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/reference/figures/knitted-pdf.png -------------------------------------------------------------------------------- /docs/reference/figures/mind-blown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/reference/figures/mind-blown.gif -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/samples/css/preamble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/css/preamble.css -------------------------------------------------------------------------------- /docs/samples/lecturenotes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/lecturenotes.Rmd -------------------------------------------------------------------------------- /docs/samples/lecturenotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/lecturenotes.html -------------------------------------------------------------------------------- /docs/samples/lecturenotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/lecturenotes.pdf -------------------------------------------------------------------------------- /docs/samples/lecturenotes_files/figure-html/mpg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/lecturenotes_files/figure-html/mpg-1.png -------------------------------------------------------------------------------- /docs/samples/lecturenotes_files/figure-latex/mpg-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/lecturenotes_files/figure-latex/mpg-1.pdf -------------------------------------------------------------------------------- /docs/samples/tex/mytemplate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/tex/mytemplate.tex -------------------------------------------------------------------------------- /docs/samples/tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/samples/tex/preamble.tex -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes-lean/skeleton/css/preamble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes-lean/skeleton/css/preamble.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes-lean/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes-lean/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes-lean/skeleton/tex/mytemplate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes-lean/skeleton/tex/mytemplate.tex -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes-lean/skeleton/tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes-lean/skeleton/tex/preamble.tex -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes-lean/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes-lean/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes/skeleton/css/preamble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes/skeleton/css/preamble.css -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes/skeleton/tex/mytemplate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes/skeleton/tex/mytemplate.tex -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes/skeleton/tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes/skeleton/tex/preamble.tex -------------------------------------------------------------------------------- /inst/rmarkdown/templates/lecturenotes/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/inst/rmarkdown/templates/lecturenotes/template.yaml -------------------------------------------------------------------------------- /lecturenotes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/lecturenotes.Rproj -------------------------------------------------------------------------------- /man/figures/mind-blown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/man/figures/mind-blown.gif -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/lecturenotes/HEAD/pkgdown/extra.css --------------------------------------------------------------------------------