Displaying 1 result from an estimated 1 matches for "meassum".
Did you mean:
assum
2000 Jul 28
4
Language element manipulation
...- function (meas)
{
fn <- paste("a", meas, ".dat", sep='')
themeas <- read.table(fn, header=F)
ameas <- as.name(paste("a", meas, sep=''))
names(themeas) <- c("xpos", paste("a", meas, sep=''))
meassum <- summary(themeas$ameas[themeas$xpos==1])
...
}
So, when this function is called with the argument ``infl'' the second column
will be named ``ainfl''. In the last line I want to extract the column called
``ainfl'' from the data frame ``themeas''. But this i...