Displaying 1 result from an estimated 1 matches for "rscipt".
Did you mean:
rscript
2009 Dec 13
0
need a solution to an R-problem: consultant available?
...ould be very useful. I would ideally like to have confidence bands
for the mean function and a single prediction.
I have posted my current Rscript below, with the location of the error
noted, in addition, below the Rscript, is some example data.
Let me know what you think.
Cheers,
Andre
###RSCIPT STARTS
require(graphics)
rm(list=ls()) # clears everything in working directory
data = read.delim("F:/R_code/exampledata.txt")
#head(data) # shows header
attach(data) #attaches data to current run
datasort=data[order(Stage), ] #sorts data so predicted values follow in
syste...