Skip to content
Snippets Groups Projects
Commit 7bafba49 authored by Felix Ramnelöv's avatar Felix Ramnelöv
Browse files

Lab 1: Missed save

parent 5e9d99cb
No related branches found
No related tags found
No related merge requests found
......@@ -102,27 +102,3 @@ missclass_rate2 = missclass(data$V9, predict_reg2)
print(summary(model2))
print(missclass_rate2)
boundary2 <- function(x1, theta, r) {
# Calculate the log-odds corresponding to the threshold r
logit_r <- log(r / (1 - r))
# Basis function transformations
z1 <- x1 ^ 4
z2 <- x1 ^ 3 * x2
z3 <- x1 ^ 2 * x2 ^ 2
z4 <- x1 * x2 ^ 3
z5 <- x2 ^ 4
return()
}
glucose_boundary2 <- sapply(age_seq, boundary, theta = theta2, r = r)
lines(age_seq,
glucose_boundary2,
col = "black",
lwd = 2)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment