[R] Simple one

Ben Bolker bolker at ufl.edu
Sat Jul 4 01:11:58 CEST 2009




JoK LoQ wrote:
> 
> Just a quickly beginner's question. 
> 
> I wanna find the mean only from the values from a column related to
> specific values from another one. Like, theres a 'region' column, i want
> the mean of the value on 'profit' column only from "south" sells from
> 'region' column
> 

mean(x[x$region=="south",]$profit)

or  (untested)

mean(subset(x,region=="south",select=profit))
-- 
View this message in context: http://www.nabble.com/Simple-one-tp24329691p24329808.html
Sent from the R help mailing list archive at Nabble.com.




More information about the R-help mailing list