search for: riebel

Displaying 2 results from an estimated 2 matches for "riebel".

Did you mean: rieber
2010 Jun 21
1
Interpreting lm Residuals...
...andard error" means "the standard deviation of the residuals," but the lm output doesn't seem to agree with this. I'd appreciate it if someone could clarify what's being output by the summary function acting on an lm object. Replies by e-mail preferred. Thanks, David Riebel Graduate Research Assistant Johns Hopkins University Department of Physics and Astronomy -------------- next part -------------- A non-text attachment was scrubbed... Name: o_seq2_fit.ps Type: application/postscript Size: 58665 bytes Desc: not available URL: <https://stat.ethz.ch/pipermail/r-...
2009 Apr 09
4
running a .r script and saving the output to a file
Hello, I want to run the following commands as a script(.r or .bat) and save the output in an external file through Windows OS. data<-read.csv(file="wgatever.csv", head=TRUE, sep=",") summary(data$SQFT) hist(data$STAMP) hist(data$STAMP, col='blue') hist(data$SHIP, col='blue') How could I do that? I have a great problem using the sink() function