Displaying 1 result from an estimated 1 matches for "nisttest".
Did you mean:
insttest
2006 Jul 30
2
NIST StRD linear regression
...se <- "http://www.itl.nist.gov/div898/strd/lls/data/LINKS/DATA"
reg.data <- paste(data.base, "/Filip.dat", sep="")
model <-
"V1~V2+I(V2^2)+I(V2^3)+I(V2^4)+I(V2^5)+I(V2^6)+I(V2^7)+I(V2^8)+I(V2^9)+I
(V2^10)"
filePath <- paste(defaultPath, "//NISTtest.dat", sep="")
download.file(reg.data, filePath, quiet=TRUE)
A <- read.table(filePath, skip=60, strip.white=TRUE)
lm.data <- lm(formula(model), A)
lm.data
Rob Carnell