Hello All:
I am wondering how I can have "dat1" and "dat2" in the
following loop where
'dat' and 'i' stick together to make dat1 and dat2 :
ifn <- "MyData"
dat <- read.table(ifn)
MyData:
01 0.40
02 0.40
03 0.40
04 0.35
05 0.34
06 0.33
names(dat)<-c("Code","M")
for(i in 1:2)
{
dati <- dat[i:i+2,]
}
[[alternative HTML version deleted]]
Hello All:
I am wondering how I can have "dat1" and "dat2" in the
following loop where
'dat' and 'i' stick together to make dat1 and dat2 :
ifn <- "MyData"
dat <- read.table(ifn)
MyData:
01 0.40
02 0.40
03 0.40
04 0.35
05 0.34
06 0.33
names(dat)<-c("Code","M")
for(i in 1:2)
{
dati <- dat[i:i+2,]
}
[[alternative HTML version deleted]]