Displaying 1 result from an estimated 1 matches for "accres".
Did you mean:
acces
2001 Aug 16
3
lm() (PR#1059)
...project with many contributors.
Type `contributors()' for more information.
Type `demo()' for some demos, `help()' for on-line help, or
`help.start()' for a HTML browser interface to help.
Type `q()' to quit R.
[Previously saved workspace restored]
> w<-read.table("accres.txt")
> w
V1 V2
1 9 1
2 3 1
3 8 1
4 7 1
5 12 1
6 4 0
7 13 0
8 10 0
9 9 0
10 9 0
11 6 0
> x<-w$V1
> t<-w$V2
> x
[1] 9 3 8 7 12 4 13 10 9 9 6
> t
[1] 1 1 1 1 1 0 0 0 0 0 0
> out<-lm(x~t)
> summary(out)
Call:
lm(formula = x ~...