[R] compute new variable

Chuck Cleland ccleland at optonline.net
Fri Jun 8 18:56:02 CEST 2007


Matthias von Rad wrote:
> Hello,
> maybe my question ist stupid, but I would like to calculate a new  
> variable for all cases in my dataset. Inspired by the dialog in Rcmdr  
> I tried
> Datenmatrix$cohigha<- with(Datenmatrix,mean (c(M2ORG, M5ORG, M8ORG,  
> M11ORG), na.rm = TRUE)
> as output I got the same number for all my cases (possibly the  
> overallmean of all cases), instead of a mean for each case.
> Can you help me with this problem?

Datenmatrix$cohigha <- rowMeans(Datenmatrix[,c("M2ORG", "M5ORG",
"M8ORG", "M11ORG")], na.rm=TRUE)

> regards
> Matthias
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

-- 
Chuck Cleland, Ph.D.
NDRI, Inc.
71 West 23rd Street, 8th floor
New York, NY 10010
tel: (212) 845-4495 (Tu, Th)
tel: (732) 512-0171 (M, W, F)
fax: (917) 438-0894



More information about the R-help mailing list