[R] Problem with mean()

Duncan Murdoch murdoch@dunc@n @end|ng |rom gm@||@com
Sat Jul 21 18:44:27 CEST 2018


On 21/07/2018 12:39 PM, John Kane via R-help wrote:
> Either I am doing something very stupid or my R installation has a glitch. What am I missing?
> dd1  <- 50
> dd2  <- 54
> 
> mean(dd1, dd2)
> [1] 50  # wrong

Read the help page ?mean.  You are specifying the parameters x and trim.

Duncan Murdoch

> 
> (dd1 + dd2)/2
> [1] 52 # correct
> 
> aa  <- c(48, 52, 56, 54, 52)
> 
> mean(aa)
> [1] 52.4 # correct
> 
> 
> 
> 	[[alternative HTML version deleted]]
> 
> ______________________________________________
> R-help using r-project.org mailing list -- To UNSUBSCRIBE and more, see
> 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.
>




More information about the R-help mailing list