Displaying 3 results from an estimated 3 matches for "data9".
Did you mean:
data
2006 Sep 13
2
recursive methods for concatenating sets of files
...ead.delim("t (5).txt", quote="", as.is=TRUE)
data6 <-read.delim("t (6).txt", quote="", as.is=TRUE)
data7 <-read.delim("t (7).txt", quote="", as.is=TRUE)
data8 <-read.delim("t (8).txt", quote="", as.is=TRUE)
data9 <-read.delim("t (9).txt", quote="", as.is=TRUE)
data10 <-read.delim("t (10).txt", quote="", as.is=TRUE)
data11 <-read.delim("t (11).txt", quote="", as.is=TRUE)
data12 <-read.delim("t (12).txt", quote="",...
2007 Feb 06
1
ANOVA Table for Full Linear Model?
...tools. I'm not saying this as a gripe, but just as evidence that I'm
not trying to do something obviously bizarre.
Here is an example of the only kind of ANOVA table for a single
linear model that I've been able to get using R:
> regression9 <- lm(y ~ x1 + x2 + x3, data=data9)
> anova.lm(regression9)
Analysis of Variance Table
Response: y
Df Sum Sq Mean Sq F value Pr(>F)
x1 1 8275.4 8275.4 81.8026 2.059e-11 ***
x2 1 480.9 480.9 4.7539 0.03489 *
x3 1 364.2 364.2 3.5997 0.06468 .
Residuals 42 4248.8 101.2
---
Si...
2006 Jul 20
11
3 columns
Hi all,
Not really sure what to put in the title so hope people still open this!
What I want to do is produce something like this
Col1 Col2 Col3
data1 data2 data3
data4 data5 data6
data7 data8 data9
data.. data.. data..
data.. data.. data..
data-n data-n+1 data-n+2
I can get the data back from my db happily, but I cant for the life of
me work out how to actually display it. Single column is easy, but
anything else has me stumped.
Can anyone help?
Thanks
J...