Skip to content

Update quiz_4.R #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions quiz_4.R
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,10 @@ pred = predict(model, testing)
RMSE = sqrt(sum((pred - testing$CompressiveStrength)^2))

predins = predict(model, training)
RMSEins = sqrt(sum((predins - training$CompressiveStrength)^2))
RMSEins = sqrt(sum((predins - training$CompressiveStrength)^2)/length(predins))
#this results will be close to the 2016 options, that are a little different I think because of the different packages versions

# RMSE = 107.4401, this does not match any of the options...
# It did however match the value of 11543.39 which is the MSE not the RMSE