├── .gitignore ├── 1.apply和plyr ├── apply和plyr.Rmd ├── apply和plyr.html └── apply和plyr.pdf ├── 2.ggplot2 ├── R可视化参考资料 │ ├── Beautiful plotting in R A ggplot2 cheatsheet.pdf │ ├── ggplot2-cheatsheet.pdf │ ├── ggplot2-数据分析与图形艺术.pdf │ └── ggplot2_The_Elements_for_Elegant_Data_Visulization_in_R.pdf ├── Think_ggplot2_draft.Rmd ├── Think_ggplot2_shinyDeom │ ├── data │ │ └── original_data.rda │ ├── helper.R │ ├── server.R │ └── ui.R ├── ggplot2讲稿.html ├── ggplot2讲稿.pdf └── runAPP.R ├── 3.Rcpp ├── Instroduction-to-Rcpp.Rmd ├── Instroduction-to-Rcpp.html ├── backtest.cpp ├── calc_dist.cpp ├── codes.R └── gibbs_sampler.cpp ├── 5.RMD_Intro ├── ReadMe.md ├── examples │ ├── LaTeX │ │ ├── R_book.bib │ │ ├── bibliography.pdf │ │ ├── bibliography.tex │ │ ├── general.pdf │ │ ├── general.tex │ │ ├── img │ │ │ └── doge.jpg │ │ ├── macro.ps6.pdf │ │ └── macro.ps6.tex │ ├── Rmarkdown │ │ ├── beamer.Rmd │ │ ├── beamer.html │ │ ├── beamer.pdf │ │ ├── html.Rmd │ │ ├── html.html │ │ ├── img │ │ │ └── doge.jpg │ │ ├── ioslides.Rmd │ │ ├── ioslides.html │ │ ├── sample.Rmd │ │ ├── sample.pdf │ │ ├── sample.tex │ │ ├── shiny.Rmd │ │ ├── slidy.Rmd │ │ ├── slidy.html │ │ ├── template_ACM │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── acm_proc_article-sp.cls │ │ │ ├── sensys-abstract.cls │ │ │ ├── sigproc.bib │ │ │ ├── template_ACM.Rmd │ │ │ └── template_ACM.pdf │ │ ├── template_CTEX.Rmd │ │ ├── word.Rmd │ │ └── word.docx │ └── markdown │ │ ├── mdlogo.png │ │ └── sample.md ├── img │ ├── RMD.png │ ├── RMarkdownOutputFormats.png │ ├── ctr_c.png │ ├── doge.jpg │ ├── mdlogo.png │ ├── structure.png │ └── template.png ├── main.Rmd └── main.pdf ├── 6.regular-expression-and-strings-prossing ├── 2016-03-10-regular-expression-and-strings-processing-in-R.Rmd ├── 2016-03-10-regular-expression-and-strings-processing-in-R.html ├── ReadMe.md └── 正则表达式及R字符串处理.pdf ├── 7.Crawler ├── Code │ ├── .ipynb_checkpoints │ │ └── rvest&urllib-checkpoint.ipynb │ ├── Douban.R │ ├── Douban.py │ └── agents.py ├── HTML │ ├── CSShtml.html │ ├── JavaScripthtml.html │ ├── Rawhtml.html │ └── baidu.html ├── Presentation │ ├── 爬虫工具.html │ ├── 爬虫工具.ipynb │ └── 网络爬虫技术.pdf └── README.md ├── 9. IntroToMCMC ├── .DS_Store ├── GibbsSamplingIntro1.pdf ├── MCMCIntro1.pdf ├── MCMCIntro2.pdf ├── MCMCOptimalProposal.pdf ├── MCMCSlides.Rmd ├── Pattern Recognition and Machine Learning.pdf └── Tjelmeland-wednesday (1).pdf ├── Homework1_for_R_Topics ├── R_Topics_Homework1.Rmd ├── R_Topics_Homework1.html └── data │ ├── 2013年我国环保重点城市空气质量情况.csv │ └── China.Cities.Location.Win.csv ├── Homework2_for_R_Topics ├── R_Topics_Homework2.Rmd ├── R_Topics_Homework2.html └── data │ ├── FirstLecture.rda │ ├── MobilePhoneInformation.rda │ └── SecondLecture.rda ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/.gitignore -------------------------------------------------------------------------------- /1.apply和plyr/apply和plyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/1.apply和plyr/apply和plyr.Rmd -------------------------------------------------------------------------------- /1.apply和plyr/apply和plyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/1.apply和plyr/apply和plyr.html -------------------------------------------------------------------------------- /1.apply和plyr/apply和plyr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/1.apply和plyr/apply和plyr.pdf -------------------------------------------------------------------------------- /2.ggplot2/R可视化参考资料/Beautiful plotting in R A ggplot2 cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/R可视化参考资料/Beautiful plotting in R A ggplot2 cheatsheet.pdf -------------------------------------------------------------------------------- /2.ggplot2/R可视化参考资料/ggplot2-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/R可视化参考资料/ggplot2-cheatsheet.pdf -------------------------------------------------------------------------------- /2.ggplot2/R可视化参考资料/ggplot2-数据分析与图形艺术.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/R可视化参考资料/ggplot2-数据分析与图形艺术.pdf -------------------------------------------------------------------------------- /2.ggplot2/R可视化参考资料/ggplot2_The_Elements_for_Elegant_Data_Visulization_in_R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/R可视化参考资料/ggplot2_The_Elements_for_Elegant_Data_Visulization_in_R.pdf -------------------------------------------------------------------------------- /2.ggplot2/Think_ggplot2_draft.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/Think_ggplot2_draft.Rmd -------------------------------------------------------------------------------- /2.ggplot2/Think_ggplot2_shinyDeom/data/original_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/Think_ggplot2_shinyDeom/data/original_data.rda -------------------------------------------------------------------------------- /2.ggplot2/Think_ggplot2_shinyDeom/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/Think_ggplot2_shinyDeom/helper.R -------------------------------------------------------------------------------- /2.ggplot2/Think_ggplot2_shinyDeom/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/Think_ggplot2_shinyDeom/server.R -------------------------------------------------------------------------------- /2.ggplot2/Think_ggplot2_shinyDeom/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/Think_ggplot2_shinyDeom/ui.R -------------------------------------------------------------------------------- /2.ggplot2/ggplot2讲稿.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/ggplot2讲稿.html -------------------------------------------------------------------------------- /2.ggplot2/ggplot2讲稿.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/ggplot2讲稿.pdf -------------------------------------------------------------------------------- /2.ggplot2/runAPP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/2.ggplot2/runAPP.R -------------------------------------------------------------------------------- /3.Rcpp/Instroduction-to-Rcpp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/Instroduction-to-Rcpp.Rmd -------------------------------------------------------------------------------- /3.Rcpp/Instroduction-to-Rcpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/Instroduction-to-Rcpp.html -------------------------------------------------------------------------------- /3.Rcpp/backtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/backtest.cpp -------------------------------------------------------------------------------- /3.Rcpp/calc_dist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/calc_dist.cpp -------------------------------------------------------------------------------- /3.Rcpp/codes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/codes.R -------------------------------------------------------------------------------- /3.Rcpp/gibbs_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/3.Rcpp/gibbs_sampler.cpp -------------------------------------------------------------------------------- /5.RMD_Intro/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/ReadMe.md -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/R_book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/R_book.bib -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/bibliography.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/bibliography.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/bibliography.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/bibliography.tex -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/general.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/general.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/general.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/general.tex -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/img/doge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/img/doge.jpg -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/macro.ps6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/macro.ps6.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/LaTeX/macro.ps6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/LaTeX/macro.ps6.tex -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/beamer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/beamer.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/beamer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/beamer.html -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/beamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/beamer.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/html.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/html.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/html.html -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/img/doge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/img/doge.jpg -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/ioslides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/ioslides.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/ioslides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/ioslides.html -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/sample.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/sample.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/sample.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/sample.tex -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/shiny.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/shiny.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/slidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/slidy.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/slidy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/slidy.html -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/Makefile -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/README.md -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/acm_proc_article-sp.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/acm_proc_article-sp.cls -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/sensys-abstract.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/sensys-abstract.cls -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/sigproc.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/sigproc.bib -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/template_ACM.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/template_ACM.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_ACM/template_ACM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_ACM/template_ACM.pdf -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/template_CTEX.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/template_CTEX.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/word.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/word.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/examples/Rmarkdown/word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/Rmarkdown/word.docx -------------------------------------------------------------------------------- /5.RMD_Intro/examples/markdown/mdlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/markdown/mdlogo.png -------------------------------------------------------------------------------- /5.RMD_Intro/examples/markdown/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/examples/markdown/sample.md -------------------------------------------------------------------------------- /5.RMD_Intro/img/RMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/RMD.png -------------------------------------------------------------------------------- /5.RMD_Intro/img/RMarkdownOutputFormats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/RMarkdownOutputFormats.png -------------------------------------------------------------------------------- /5.RMD_Intro/img/ctr_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/ctr_c.png -------------------------------------------------------------------------------- /5.RMD_Intro/img/doge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/doge.jpg -------------------------------------------------------------------------------- /5.RMD_Intro/img/mdlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/mdlogo.png -------------------------------------------------------------------------------- /5.RMD_Intro/img/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/structure.png -------------------------------------------------------------------------------- /5.RMD_Intro/img/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/img/template.png -------------------------------------------------------------------------------- /5.RMD_Intro/main.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/main.Rmd -------------------------------------------------------------------------------- /5.RMD_Intro/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/5.RMD_Intro/main.pdf -------------------------------------------------------------------------------- /6.regular-expression-and-strings-prossing/2016-03-10-regular-expression-and-strings-processing-in-R.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/6.regular-expression-and-strings-prossing/2016-03-10-regular-expression-and-strings-processing-in-R.Rmd -------------------------------------------------------------------------------- /6.regular-expression-and-strings-prossing/2016-03-10-regular-expression-and-strings-processing-in-R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/6.regular-expression-and-strings-prossing/2016-03-10-regular-expression-and-strings-processing-in-R.html -------------------------------------------------------------------------------- /6.regular-expression-and-strings-prossing/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/6.regular-expression-and-strings-prossing/ReadMe.md -------------------------------------------------------------------------------- /6.regular-expression-and-strings-prossing/正则表达式及R字符串处理.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/6.regular-expression-and-strings-prossing/正则表达式及R字符串处理.pdf -------------------------------------------------------------------------------- /7.Crawler/Code/.ipynb_checkpoints/rvest&urllib-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Code/.ipynb_checkpoints/rvest&urllib-checkpoint.ipynb -------------------------------------------------------------------------------- /7.Crawler/Code/Douban.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Code/Douban.R -------------------------------------------------------------------------------- /7.Crawler/Code/Douban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Code/Douban.py -------------------------------------------------------------------------------- /7.Crawler/Code/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Code/agents.py -------------------------------------------------------------------------------- /7.Crawler/HTML/CSShtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/HTML/CSShtml.html -------------------------------------------------------------------------------- /7.Crawler/HTML/JavaScripthtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/HTML/JavaScripthtml.html -------------------------------------------------------------------------------- /7.Crawler/HTML/Rawhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/HTML/Rawhtml.html -------------------------------------------------------------------------------- /7.Crawler/HTML/baidu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/HTML/baidu.html -------------------------------------------------------------------------------- /7.Crawler/Presentation/爬虫工具.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Presentation/爬虫工具.html -------------------------------------------------------------------------------- /7.Crawler/Presentation/爬虫工具.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Presentation/爬虫工具.ipynb -------------------------------------------------------------------------------- /7.Crawler/Presentation/网络爬虫技术.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/Presentation/网络爬虫技术.pdf -------------------------------------------------------------------------------- /7.Crawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/7.Crawler/README.md -------------------------------------------------------------------------------- /9. IntroToMCMC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/.DS_Store -------------------------------------------------------------------------------- /9. IntroToMCMC/GibbsSamplingIntro1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/GibbsSamplingIntro1.pdf -------------------------------------------------------------------------------- /9. IntroToMCMC/MCMCIntro1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/MCMCIntro1.pdf -------------------------------------------------------------------------------- /9. IntroToMCMC/MCMCIntro2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/MCMCIntro2.pdf -------------------------------------------------------------------------------- /9. IntroToMCMC/MCMCOptimalProposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/MCMCOptimalProposal.pdf -------------------------------------------------------------------------------- /9. IntroToMCMC/MCMCSlides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/MCMCSlides.Rmd -------------------------------------------------------------------------------- /9. IntroToMCMC/Pattern Recognition and Machine Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/Pattern Recognition and Machine Learning.pdf -------------------------------------------------------------------------------- /9. IntroToMCMC/Tjelmeland-wednesday (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/9. IntroToMCMC/Tjelmeland-wednesday (1).pdf -------------------------------------------------------------------------------- /Homework1_for_R_Topics/R_Topics_Homework1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework1_for_R_Topics/R_Topics_Homework1.Rmd -------------------------------------------------------------------------------- /Homework1_for_R_Topics/R_Topics_Homework1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework1_for_R_Topics/R_Topics_Homework1.html -------------------------------------------------------------------------------- /Homework1_for_R_Topics/data/2013年我国环保重点城市空气质量情况.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework1_for_R_Topics/data/2013年我国环保重点城市空气质量情况.csv -------------------------------------------------------------------------------- /Homework1_for_R_Topics/data/China.Cities.Location.Win.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework1_for_R_Topics/data/China.Cities.Location.Win.csv -------------------------------------------------------------------------------- /Homework2_for_R_Topics/R_Topics_Homework2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework2_for_R_Topics/R_Topics_Homework2.Rmd -------------------------------------------------------------------------------- /Homework2_for_R_Topics/R_Topics_Homework2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework2_for_R_Topics/R_Topics_Homework2.html -------------------------------------------------------------------------------- /Homework2_for_R_Topics/data/FirstLecture.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework2_for_R_Topics/data/FirstLecture.rda -------------------------------------------------------------------------------- /Homework2_for_R_Topics/data/MobilePhoneInformation.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework2_for_R_Topics/data/MobilePhoneInformation.rda -------------------------------------------------------------------------------- /Homework2_for_R_Topics/data/SecondLecture.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/Homework2_for_R_Topics/data/SecondLecture.rda -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wise-r/R-Topics/HEAD/README.md --------------------------------------------------------------------------------