ERCOT Official Document

1 - Multiple Regression in R using OLS. 1.1 – “Review” of OLS. Load the comma-delimited file bodyfat.csv into R > Bodyfat = read.table(file.choose(),header=T,sep=",") Read 3528 items > Bodyfat = Bodyfat[,-1] first column density is redundant. Response is in column 1, the candidate predictors are in columns 2 – 14. > X ................
................