Displaying 2 results from an estimated 2 matches for "enn_mn".
2008 Sep 24
2
Add "title" in sink output and possibility of plot-like output for text
...le outputs.
>sink("summ_model1and2.txt")
> summary(model1)
> summary(model2)
> sink()
Q1: Is there a way I could add a line of the text above the summary to act
like a title?
Also, I have been using the following to save plots from the lm function:
> pdf("small.bin.ENN_MN_withQ.pdf")
> par(mfrow = c(2, 2), oma = c(0, 0, 2, 0))
> plot(small.bin.ENN_MN)
> plot(small.bin.ENN_MN.q)
> dev.off()
Q2: Is there a way I could save the output from 'summary' into a c(2,2)
window like I do with the plots?
Thank you kindly,
Cheers,
M Just
[[alternativ...
2008 Sep 23
1
Create groups from data to compute lm?
...i1234 pri_ex sc_ex Sc_ex_pri
sc_ec_p1234 PD LPI ED LSI
1 3 25 1 1 3251 251 1 1 26 125
1125 1125 21.6565 62.6602 82.0769 15.8792
2 3 25 1 1 3251 251 1 1 26 125
1125 1125 19.3076 27.6264 111.2014 20.7889
PAFRAC PROX_MN ENN_MN CONTAG pfor purban
1 1.440 319.6529 114.8314 62.0965 69.4891 12.3124
2 1.467 396.1949 105.3712 52.9186 38.1179 15.1906
I tried using:
all.lm <- (pfor~PD, data = all, subset=(ex_bin==250))
but this resulted in a bogus analysis filed with 'NAs'. I then tried to use
getGroups.
> al...