stat2/R/lm.R
2023-01-07 19:25:54 +01:00

8 lines
98 B
R

RSS <- function(model){
sum(residuals(model)^2)
}
dydx <- function(x, model, variable, ...){
}