├── .Rprofile ├── .gitattributes ├── .github └── workflows │ └── Render-Book.yaml ├── .gitignore ├── DESCRIPTION ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── _bookdown.yml ├── _build.sh ├── _common.R ├── _deploy-book.R ├── _output.yml ├── _render.R ├── advanced-manipulation.Rmd ├── appendix.Rmd ├── book.bib ├── code ├── compat_gp.stan ├── eight_schools.stan ├── normal_dist.stan ├── normal_gp.stan ├── rats.stan ├── stan-draft.Rmd └── ttest.numbers ├── dashboard ├── 000-flexdashboard │ └── app.Rmd ├── 001-mget │ └── app.R ├── 002-cars │ ├── about.md │ └── app.R ├── 003-ggiraph │ └── app.R ├── 004-shinydashboard │ └── app.R ├── 005-engineering-production │ └── app.R ├── 006-kableExtra │ └── app.R ├── 007-shiny-app │ ├── README.md │ └── app.R ├── 008-dynamic-select │ └── app.R ├── 009-bs4Dash │ └── app.R ├── 999-prototype-design │ └── app.R ├── README.md ├── ab-test │ ├── README.md │ ├── server.R │ └── ui.R ├── deploy_apps.R └── install_deps.R ├── data-manipulation.Rmd ├── data-structure.Rmd ├── data-transportation.Rmd ├── data-wrangling.Rmd ├── data ├── mail.txt ├── us_county_shifted.rds └── us_states_shifted.rds ├── diagrams ├── README.md ├── markdown.pdf ├── markdown.svg ├── rmarkdown.png ├── rmarkdown.svg ├── shiny-org.pdf ├── shiny-org.png ├── shiny-org.svg ├── tidyverse-vs-base-r.pdf ├── tidyverse-vs-base-r.png ├── tidyverse-vs-base-r.svg ├── workflow.pdf └── workflow.svg ├── differential-equations.Rmd ├── docker-compose.yml ├── examples ├── README.md ├── beamer-cuerna.Rmd ├── beamer-focus.Rmd ├── beamer-metropolis-spruce.Rmd ├── beamer-metropolis.Rmd ├── beamer-pgfornament-han.Rmd ├── beamer-verona.Rmd ├── beamer-warsaw.Rmd ├── custom-reference.docx ├── custom-reference.pptx ├── docx-document.Rmd ├── docx-document.docx ├── dunning-kruger-effect.Rmd ├── fontawesome.tex ├── html-document.Rmd ├── latex-span.lua ├── mobile-document.Rmd ├── pandoc-scrbook.md ├── parameterized-document.Rmd ├── pdf-document.Rmd ├── pdf-mobile.Rmd ├── pdf-tufte.Rmd ├── powerpoint-presentation.Rmd ├── smartdiagram.tex ├── standalone.tex └── xaringan-presentation.Rmd ├── file-operations.Rmd ├── ga_script.html ├── graphics-foundations.Rmd ├── ieee.csl ├── images ├── README.md ├── all.pdf ├── cc-by-nc-nd.eps ├── cc-by-nc-nd.png ├── cc-by-nc-nd.svg ├── cover.png ├── cover.svg ├── html5.pdf ├── html5.svg ├── inkscape.pdf ├── inkscape.png ├── inkscape.svg ├── iris.png ├── pdf.pdf ├── pdf.svg ├── powerpoint.pdf ├── powerpoint.svg ├── rmarkdown.png ├── word.pdf └── word.svg ├── index.Rmd ├── interactive-web-graphics.Rmd ├── math-operations.Rmd ├── matrix-operations.Rmd ├── mixed-programming.Rmd ├── notesdown.Rproj ├── numerical-optimization.Rmd ├── object-oriented-programming.Rmd ├── other-manipulation.Rmd ├── other-softwares.Rmd ├── packages.bib ├── parallel-manipulation.Rmd ├── preamble.tex ├── preface.Rmd ├── push.sh ├── references.Rmd ├── regular-expressions.Rmd ├── requirements.txt ├── screenshots ├── dm-batch-export-xlsx.png ├── eclipse-statet.png ├── flexdashboard-01.png ├── flexdashboard-02.png ├── knitr-minimal.png ├── leaflet-fiji.png ├── leaflet-heatmap.png ├── mai.pdf ├── mai.png ├── rasterly-rides.png ├── regexp-comics.png ├── regexp-name-capture.png ├── regexp-name-group.png ├── rstudio-desktop.png ├── rstudio-docker.png ├── rstudio-vbox.png ├── shiny-app.png ├── spark-mtcars.png ├── spark-start.png ├── typora-theme-default.png ├── typora-theme-vue.png └── zsh-rstudio.png ├── scripts.R ├── sidebar.lua ├── statistical-computation.Rmd ├── statistical-graphics.Rmd ├── string-operations.Rmd ├── style.css ├── symbolic-computation.Rmd ├── texlive.txt ├── visualization-colors.Rmd └── visualization-gallery.Rmd /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/.Rprofile -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Render-Book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/.github/workflows/Render-Book.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_build.sh -------------------------------------------------------------------------------- /_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_common.R -------------------------------------------------------------------------------- /_deploy-book.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_deploy-book.R -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_output.yml -------------------------------------------------------------------------------- /_render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/_render.R -------------------------------------------------------------------------------- /advanced-manipulation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/advanced-manipulation.Rmd -------------------------------------------------------------------------------- /appendix.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/appendix.Rmd -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/book.bib -------------------------------------------------------------------------------- /code/compat_gp.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/compat_gp.stan -------------------------------------------------------------------------------- /code/eight_schools.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/eight_schools.stan -------------------------------------------------------------------------------- /code/normal_dist.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/normal_dist.stan -------------------------------------------------------------------------------- /code/normal_gp.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/normal_gp.stan -------------------------------------------------------------------------------- /code/rats.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/rats.stan -------------------------------------------------------------------------------- /code/stan-draft.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/stan-draft.Rmd -------------------------------------------------------------------------------- /code/ttest.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/code/ttest.numbers -------------------------------------------------------------------------------- /dashboard/000-flexdashboard/app.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/000-flexdashboard/app.Rmd -------------------------------------------------------------------------------- /dashboard/001-mget/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/001-mget/app.R -------------------------------------------------------------------------------- /dashboard/002-cars/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/002-cars/about.md -------------------------------------------------------------------------------- /dashboard/002-cars/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/002-cars/app.R -------------------------------------------------------------------------------- /dashboard/003-ggiraph/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/003-ggiraph/app.R -------------------------------------------------------------------------------- /dashboard/004-shinydashboard/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/004-shinydashboard/app.R -------------------------------------------------------------------------------- /dashboard/005-engineering-production/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/005-engineering-production/app.R -------------------------------------------------------------------------------- /dashboard/006-kableExtra/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/006-kableExtra/app.R -------------------------------------------------------------------------------- /dashboard/007-shiny-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/007-shiny-app/README.md -------------------------------------------------------------------------------- /dashboard/007-shiny-app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/007-shiny-app/app.R -------------------------------------------------------------------------------- /dashboard/008-dynamic-select/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/008-dynamic-select/app.R -------------------------------------------------------------------------------- /dashboard/009-bs4Dash/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/009-bs4Dash/app.R -------------------------------------------------------------------------------- /dashboard/999-prototype-design/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/999-prototype-design/app.R -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/ab-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/ab-test/README.md -------------------------------------------------------------------------------- /dashboard/ab-test/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/ab-test/server.R -------------------------------------------------------------------------------- /dashboard/ab-test/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/ab-test/ui.R -------------------------------------------------------------------------------- /dashboard/deploy_apps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/deploy_apps.R -------------------------------------------------------------------------------- /dashboard/install_deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/dashboard/install_deps.R -------------------------------------------------------------------------------- /data-manipulation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data-manipulation.Rmd -------------------------------------------------------------------------------- /data-structure.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data-structure.Rmd -------------------------------------------------------------------------------- /data-transportation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data-transportation.Rmd -------------------------------------------------------------------------------- /data-wrangling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data-wrangling.Rmd -------------------------------------------------------------------------------- /data/mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data/mail.txt -------------------------------------------------------------------------------- /data/us_county_shifted.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data/us_county_shifted.rds -------------------------------------------------------------------------------- /data/us_states_shifted.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/data/us_states_shifted.rds -------------------------------------------------------------------------------- /diagrams/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 创作的流程图、示意图等 4 | -------------------------------------------------------------------------------- /diagrams/markdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/markdown.pdf -------------------------------------------------------------------------------- /diagrams/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/markdown.svg -------------------------------------------------------------------------------- /diagrams/rmarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/rmarkdown.png -------------------------------------------------------------------------------- /diagrams/rmarkdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/rmarkdown.svg -------------------------------------------------------------------------------- /diagrams/shiny-org.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/shiny-org.pdf -------------------------------------------------------------------------------- /diagrams/shiny-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/shiny-org.png -------------------------------------------------------------------------------- /diagrams/shiny-org.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/shiny-org.svg -------------------------------------------------------------------------------- /diagrams/tidyverse-vs-base-r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/tidyverse-vs-base-r.pdf -------------------------------------------------------------------------------- /diagrams/tidyverse-vs-base-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/tidyverse-vs-base-r.png -------------------------------------------------------------------------------- /diagrams/tidyverse-vs-base-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/tidyverse-vs-base-r.svg -------------------------------------------------------------------------------- /diagrams/workflow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/workflow.pdf -------------------------------------------------------------------------------- /diagrams/workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/diagrams/workflow.svg -------------------------------------------------------------------------------- /differential-equations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/differential-equations.Rmd -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/beamer-cuerna.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-cuerna.Rmd -------------------------------------------------------------------------------- /examples/beamer-focus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-focus.Rmd -------------------------------------------------------------------------------- /examples/beamer-metropolis-spruce.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-metropolis-spruce.Rmd -------------------------------------------------------------------------------- /examples/beamer-metropolis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-metropolis.Rmd -------------------------------------------------------------------------------- /examples/beamer-pgfornament-han.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-pgfornament-han.Rmd -------------------------------------------------------------------------------- /examples/beamer-verona.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-verona.Rmd -------------------------------------------------------------------------------- /examples/beamer-warsaw.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/beamer-warsaw.Rmd -------------------------------------------------------------------------------- /examples/custom-reference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/custom-reference.docx -------------------------------------------------------------------------------- /examples/custom-reference.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/custom-reference.pptx -------------------------------------------------------------------------------- /examples/docx-document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/docx-document.Rmd -------------------------------------------------------------------------------- /examples/docx-document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/docx-document.docx -------------------------------------------------------------------------------- /examples/dunning-kruger-effect.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/dunning-kruger-effect.Rmd -------------------------------------------------------------------------------- /examples/fontawesome.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/fontawesome.tex -------------------------------------------------------------------------------- /examples/html-document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/html-document.Rmd -------------------------------------------------------------------------------- /examples/latex-span.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/latex-span.lua -------------------------------------------------------------------------------- /examples/mobile-document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/mobile-document.Rmd -------------------------------------------------------------------------------- /examples/pandoc-scrbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/pandoc-scrbook.md -------------------------------------------------------------------------------- /examples/parameterized-document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/parameterized-document.Rmd -------------------------------------------------------------------------------- /examples/pdf-document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/pdf-document.Rmd -------------------------------------------------------------------------------- /examples/pdf-mobile.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/pdf-mobile.Rmd -------------------------------------------------------------------------------- /examples/pdf-tufte.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/pdf-tufte.Rmd -------------------------------------------------------------------------------- /examples/powerpoint-presentation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/powerpoint-presentation.Rmd -------------------------------------------------------------------------------- /examples/smartdiagram.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/smartdiagram.tex -------------------------------------------------------------------------------- /examples/standalone.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/standalone.tex -------------------------------------------------------------------------------- /examples/xaringan-presentation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/examples/xaringan-presentation.Rmd -------------------------------------------------------------------------------- /file-operations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/file-operations.Rmd -------------------------------------------------------------------------------- /ga_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/ga_script.html -------------------------------------------------------------------------------- /graphics-foundations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/graphics-foundations.Rmd -------------------------------------------------------------------------------- /ieee.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/ieee.csl -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 文件夹 `diagrams/` 和 `screenshots/` 放不下的图片 4 | -------------------------------------------------------------------------------- /images/all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/all.pdf -------------------------------------------------------------------------------- /images/cc-by-nc-nd.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/cc-by-nc-nd.eps -------------------------------------------------------------------------------- /images/cc-by-nc-nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/cc-by-nc-nd.png -------------------------------------------------------------------------------- /images/cc-by-nc-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/cc-by-nc-nd.svg -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/cover.svg -------------------------------------------------------------------------------- /images/html5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/html5.pdf -------------------------------------------------------------------------------- /images/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/html5.svg -------------------------------------------------------------------------------- /images/inkscape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/inkscape.pdf -------------------------------------------------------------------------------- /images/inkscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/inkscape.png -------------------------------------------------------------------------------- /images/inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/inkscape.svg -------------------------------------------------------------------------------- /images/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/iris.png -------------------------------------------------------------------------------- /images/pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/pdf.pdf -------------------------------------------------------------------------------- /images/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/pdf.svg -------------------------------------------------------------------------------- /images/powerpoint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/powerpoint.pdf -------------------------------------------------------------------------------- /images/powerpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/powerpoint.svg -------------------------------------------------------------------------------- /images/rmarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/rmarkdown.png -------------------------------------------------------------------------------- /images/word.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/word.pdf -------------------------------------------------------------------------------- /images/word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/images/word.svg -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/index.Rmd -------------------------------------------------------------------------------- /interactive-web-graphics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/interactive-web-graphics.Rmd -------------------------------------------------------------------------------- /math-operations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/math-operations.Rmd -------------------------------------------------------------------------------- /matrix-operations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/matrix-operations.Rmd -------------------------------------------------------------------------------- /mixed-programming.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/mixed-programming.Rmd -------------------------------------------------------------------------------- /notesdown.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/notesdown.Rproj -------------------------------------------------------------------------------- /numerical-optimization.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/numerical-optimization.Rmd -------------------------------------------------------------------------------- /object-oriented-programming.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/object-oriented-programming.Rmd -------------------------------------------------------------------------------- /other-manipulation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/other-manipulation.Rmd -------------------------------------------------------------------------------- /other-softwares.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/other-softwares.Rmd -------------------------------------------------------------------------------- /packages.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/packages.bib -------------------------------------------------------------------------------- /parallel-manipulation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/parallel-manipulation.Rmd -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/preamble.tex -------------------------------------------------------------------------------- /preface.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/preface.Rmd -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/push.sh -------------------------------------------------------------------------------- /references.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/references.Rmd -------------------------------------------------------------------------------- /regular-expressions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/regular-expressions.Rmd -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/dm-batch-export-xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/dm-batch-export-xlsx.png -------------------------------------------------------------------------------- /screenshots/eclipse-statet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/eclipse-statet.png -------------------------------------------------------------------------------- /screenshots/flexdashboard-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/flexdashboard-01.png -------------------------------------------------------------------------------- /screenshots/flexdashboard-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/flexdashboard-02.png -------------------------------------------------------------------------------- /screenshots/knitr-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/knitr-minimal.png -------------------------------------------------------------------------------- /screenshots/leaflet-fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/leaflet-fiji.png -------------------------------------------------------------------------------- /screenshots/leaflet-heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/leaflet-heatmap.png -------------------------------------------------------------------------------- /screenshots/mai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/mai.pdf -------------------------------------------------------------------------------- /screenshots/mai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/mai.png -------------------------------------------------------------------------------- /screenshots/rasterly-rides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/rasterly-rides.png -------------------------------------------------------------------------------- /screenshots/regexp-comics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/regexp-comics.png -------------------------------------------------------------------------------- /screenshots/regexp-name-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/regexp-name-capture.png -------------------------------------------------------------------------------- /screenshots/regexp-name-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/regexp-name-group.png -------------------------------------------------------------------------------- /screenshots/rstudio-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/rstudio-desktop.png -------------------------------------------------------------------------------- /screenshots/rstudio-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/rstudio-docker.png -------------------------------------------------------------------------------- /screenshots/rstudio-vbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/rstudio-vbox.png -------------------------------------------------------------------------------- /screenshots/shiny-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/shiny-app.png -------------------------------------------------------------------------------- /screenshots/spark-mtcars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/spark-mtcars.png -------------------------------------------------------------------------------- /screenshots/spark-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/spark-start.png -------------------------------------------------------------------------------- /screenshots/typora-theme-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/typora-theme-default.png -------------------------------------------------------------------------------- /screenshots/typora-theme-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/typora-theme-vue.png -------------------------------------------------------------------------------- /screenshots/zsh-rstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/screenshots/zsh-rstudio.png -------------------------------------------------------------------------------- /scripts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/scripts.R -------------------------------------------------------------------------------- /sidebar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/sidebar.lua -------------------------------------------------------------------------------- /statistical-computation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/statistical-computation.Rmd -------------------------------------------------------------------------------- /statistical-graphics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/statistical-graphics.Rmd -------------------------------------------------------------------------------- /string-operations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/string-operations.Rmd -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/style.css -------------------------------------------------------------------------------- /symbolic-computation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/symbolic-computation.Rmd -------------------------------------------------------------------------------- /texlive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/texlive.txt -------------------------------------------------------------------------------- /visualization-colors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/visualization-colors.Rmd -------------------------------------------------------------------------------- /visualization-gallery.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangyunHuang/notesdown/HEAD/visualization-gallery.Rmd --------------------------------------------------------------------------------