This is an open source data set that can be accessed through the UCI Machine Learning Repository

The data set examined in this report can be accessed here here: https://archive.ics.uci.edu/ml/datasets/Student+Performance

Data Set Information:

This data approach student achievement in secondary education of two Portuguese schools. The data was collected by using school reports and questionnaires. This dataset examines Mathematics (mat) performance. In [Cortez and Silva, 2008]. Important note: the target attribute G3 has a strong correlation with attributes G2 and G1. This occurs because G3 is the final year grade (issued at the 3rd period), while G1 and G2 correspond to the 1st and 2nd period grades. It is more difficult to predict G3 without G2 and G1, but such prediction is much more useful.

Attribute Information:

## Loading required package: lattice
## Loading required package: ggplot2
## Rattle: A free graphical interface for data mining with R.
## Version 3.4.1 Copyright (c) 2006-2014 Togaware Pty Ltd.
## Type 'rattle()' to shake, rattle, and roll your data.
std <- read.csv("student-mat.csv", header=TRUE, sep=";")
attach(std)
lm.fit=lm(std$G3~std$G2)
summary(lm.fit)
## 
## Call:
## lm(formula = std$G3 ~ std$G2)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -9.6284 -0.3326  0.2695  1.0653  3.5759 
## 
## Coefficients:
##             Estimate Std. Error t value Pr(>|t|)    
## (Intercept) -1.39276    0.29694   -4.69 3.77e-06 ***
## std$G2       1.10211    0.02615   42.14  < 2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 1.953 on 393 degrees of freedom
## Multiple R-squared:  0.8188, Adjusted R-squared:  0.8183 
## F-statistic:  1776 on 1 and 393 DF,  p-value: < 2.2e-16
par(mfrow=c(2,2))
plot(lm.fit)

p = ggplot(std, aes(x=G2,y=G3, colour=studytime)) + geom_point()
p = p + geom_point()
p = p + stat_smooth(method="lm", se=FALSE)
p

#qplot(G2, G3, data=std)#, colour=studytime)
#abline(lm.fit, col="blue")
inTrain <- createDataPartition(std$school, p=0.7, list=FALSE)
training <- std[inTrain,]; testing <- std[-inTrain,]

modFit2 <- train(G3 ~ ., method ="rpart", data=training)
## Warning in nominalTrainWorkflow(x = x, y = y, wts = weights, info =
## trainInfo, : There were missing values in resampled performance measures.
fancyRpartPlot(modFit2$finalModel)