My apologies for the dumb question...but I can\'t seem to find a simple solution
I want to extract the standardized coefficients from a fitted linear model (in R) there
Just use colnames(data) with lapply or sapply. For example:
colnames(data)
lapply
sapply
lapply(data[, colnames(data)], scale)