Closed gmcdonald-sfg closed 2 years ago
In the “Revisit the Red Wine Quality Model” section, suggest sticking with 75/25 training/testing split, to be consistent with other modules (so suggest changing trainSize <- round(0.80 * nrow(redwine)) to trainSize <- round(0.75 * nrow(redwine)))
trainSize <- round(0.80 * nrow(redwine))
trainSize <- round(0.75 * nrow(redwine))
In the “Revisit the Red Wine Quality Model” section, suggest sticking with 75/25 training/testing split, to be consistent with other modules (so suggest changing
trainSize <- round(0.80 * nrow(redwine))
totrainSize <- round(0.75 * nrow(redwine))
)