문제

Does anyone know the parameters that the default 'mean' function takes in R?

We're looking to write a variation of the function to use in aggregate and need to know exactly what is expected.

Thanks folks.

도움이 되었습니까?

해결책

You can get the answer using ?mean to search local help and ??mean to search the global help.

Most probable answer you are looking for:

mean(x, trim = 0, na.rm = FALSE, ...)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top