search for: arbstd

Displaying 1 result from an estimated 1 matches for "arbstd".

Did you mean: crbstd
2004 May 17
3
Accessing data
Hello, I would like to access my data frame without one variable. E.g.: > colnames(x) [1] "Besch" "Ang.m" "Arb.m" "i10" "Umsatz" "arbstd" I can try x[,-1], but this variable must be called by it??s name. x[,-"Besch"] x[,!"Besch"] attach(x) x[-Besch] ... ... does not work. I could not found a solution of this little problem in any scripts about R and in google. Should I type in x[,c("Ang.m",&...