├── .gitignore ├── Code ├── _placeHolderFile.md ├── dataStudentDropIndia.Rmd ├── dataStudentDropIndia.html ├── dataStudentDropIndia.ipynb ├── dataStudentScoreAUS.Rmd ├── dataStudentScoreAUS.html ├── dataStudentScoreAUS.ipynb ├── modelStudentDropIndia.Rmd ├── modelStudentDropIndia.html ├── modelStudentDropIndia.ipynb ├── modelStudentScoreAUS.Rmd ├── modelStudentScoreAUS.html └── modelStudentScoreAUS.ipynb ├── Data ├── _placeHolderFile.md ├── studentDropIndia_20161215.csv └── studentScoreAUS_20161215.csv ├── Doc ├── Blog - Education Analytics with R and Cortana Intelligent Suite.pdf ├── Using R Together with Jupyter Notebook.pdf └── _placeHolderFile.md ├── EduDP.Rproj └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/_placeHolderFile.md: -------------------------------------------------------------------------------- 1 | Git placeholder file -------------------------------------------------------------------------------- /Code/dataStudentDropIndia.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentDropIndia.Rmd -------------------------------------------------------------------------------- /Code/dataStudentDropIndia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentDropIndia.html -------------------------------------------------------------------------------- /Code/dataStudentDropIndia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentDropIndia.ipynb -------------------------------------------------------------------------------- /Code/dataStudentScoreAUS.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentScoreAUS.Rmd -------------------------------------------------------------------------------- /Code/dataStudentScoreAUS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentScoreAUS.html -------------------------------------------------------------------------------- /Code/dataStudentScoreAUS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/dataStudentScoreAUS.ipynb -------------------------------------------------------------------------------- /Code/modelStudentDropIndia.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentDropIndia.Rmd -------------------------------------------------------------------------------- /Code/modelStudentDropIndia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentDropIndia.html -------------------------------------------------------------------------------- /Code/modelStudentDropIndia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentDropIndia.ipynb -------------------------------------------------------------------------------- /Code/modelStudentScoreAUS.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentScoreAUS.Rmd -------------------------------------------------------------------------------- /Code/modelStudentScoreAUS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentScoreAUS.html -------------------------------------------------------------------------------- /Code/modelStudentScoreAUS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Code/modelStudentScoreAUS.ipynb -------------------------------------------------------------------------------- /Data/_placeHolderFile.md: -------------------------------------------------------------------------------- 1 | Git placeholder file -------------------------------------------------------------------------------- /Data/studentDropIndia_20161215.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Data/studentDropIndia_20161215.csv -------------------------------------------------------------------------------- /Data/studentScoreAUS_20161215.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Data/studentScoreAUS_20161215.csv -------------------------------------------------------------------------------- /Doc/Blog - Education Analytics with R and Cortana Intelligent Suite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Doc/Blog - Education Analytics with R and Cortana Intelligent Suite.pdf -------------------------------------------------------------------------------- /Doc/Using R Together with Jupyter Notebook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/Doc/Using R Together with Jupyter Notebook.pdf -------------------------------------------------------------------------------- /Doc/_placeHolderFile.md: -------------------------------------------------------------------------------- 1 | Git placeholder file -------------------------------------------------------------------------------- /EduDP.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/EduDP.Rproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouFang928/EduDP/HEAD/README.md --------------------------------------------------------------------------------