From 3c3f42cd5cd23e6ce18078196e2cd65efea169f6 Mon Sep 17 00:00:00 2001
From: deomareza <59992567+deomareza@users.noreply.github.com>
Date: Fri, 14 Feb 2020 19:11:06 +0700
Subject: [PATCH] Add files via upload
---
Admission_Prediction_v1.Rmd | 55 +++++++++++
Admission_Prediction_v1.html | 178 +++++++++++++++++++++++++++++++++++
2 files changed, 233 insertions(+)
create mode 100644 Admission_Prediction_v1.Rmd
create mode 100644 Admission_Prediction_v1.html
diff --git a/Admission_Prediction_v1.Rmd b/Admission_Prediction_v1.Rmd
new file mode 100644
index 0000000..84e5201
--- /dev/null
+++ b/Admission_Prediction_v1.Rmd
@@ -0,0 +1,55 @@
+---
+title: "College Admission Prediction"
+author: "Deo Ivan Mareza"
+date: "`14 Feburary 2020`"
+output:
+ prettydoc::html_pretty:
+ theme: cayman
+ highlight: github
+vignette: >
+ %\VignetteIndexEntry{Vignette Title}
+ %\VignetteEngine{knitr::rmarkdown}
+ %\VignetteEncoding{UTF-8}
+---
+
+# INTRODUCTION
+
+In this exercise, we want to see the chance of someone getting into a university of their choice using linear regression method.
+
+
+
+The data is kindly provided by : Mohan S Acharya, Asfia Armaan, Aneeta S Antony : A Comparison of Regression Models for Prediction of Graduate Admissions, IEEE International Conference on Computational Intelligence in Data Science 2019
+
+
+
+
+# DATA PREPARATION
+
+
+Library packages that we're using
+```{r,warning=FALSE, results='hide',message=FALSE}
+
+library(tidyverse)
+library(GGally)
+library(MLmetrics)
+library(car)
+library(lmtest)
+
+```
+
+Reading the data
+```{r,warning=FALSE, results='hide',message=FALSE}
+
+admission <- read_csv("data_input/Admission_Predict_Ver1.1.csv")
+
+```
+
+Checking the data
+```{r}
+
+head(admission)
+
+```
+
+
+
diff --git a/Admission_Prediction_v1.html b/Admission_Prediction_v1.html
new file mode 100644
index 0000000..f3adcde
--- /dev/null
+++ b/Admission_Prediction_v1.html
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+College Admission Prediction
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
INTRODUCTION
+
In this exercise, we want to see the chance of someone getting into a university of their choice using linear regression method.
+
The data is kindly provided by : Mohan S Acharya, Asfia Armaan, Aneeta S Antony : A Comparison of Regression Models for Prediction of Graduate Admissions, IEEE International Conference on Computational Intelligence in Data Science 2019
+
+
+
DATA PREPARATION
+
Load required library packages
+
+
Reading the data
+
+
+
+
+
+
+
+
+
+
+