First of all I want to point out that I'm not very familiar with R, so sorry if one of the following questions is clear.
My motivation is to write a simple R-script, which should contain:
- import data
- do regression of form $ Y=aX+bZ+intercept$
- some calculations
- ouput
now here are my questions:
- This is a very general question: If I wrote the R script, then I have to load it with source(name.R), right? Must be there an additional command to execute the script?
- Suppose I did my regression with
lm, likefit<-lm(Y~X+Z,data=database)this gives a nice ouput. What I really want is to save the coefficients of the model in a vector. How can I do this? Here would it be a 3-dimensional vector(intercept, a, b). EDIT I've triedcoefficient<-coefficient(fit). This does not work!coefficientis not a numerical vector. There are also the name, i.e. intercept and the value below for the first element of it. - If I want to print out the coefficients and some calculations at the very end of the script, how do I do this? Just write
print(....)?
I'm very thankful for your help and Hopefully I considered all rules and conventions in this forum, since this is my first question. If not, I'm very sorry.
source (name.R)will look for the file name stored in variablename.Rand try to source that file. If"name.R"is the actual file name, you need to usesource ("name.R"). – cbeleites Apr 24 '12 at 17:21