Loss method for "plmm" class
Value
A numeric vector of the squared-error loss values for the given observed and predicted outcomes
Examples
admix_design <- create_design(X = admix$X, y = admix$y)
fit <- plmm(design = admix_design, K = relatedness_mat(admix$X))
yhat <- predict(object = fit, newX = admix$X, type = 'lp', lambda = 0.05)
head(plmm_loss(yhat = yhat, y = admix$y))
#> [,1]
#> [1,] 0.71821939
#> [2,] 0.06815981
#> [3,] 0.62117236
#> [4,] 0.16172510
#> [5,] 1.85950707
#> [6,] 2.54262183