Created
February 16, 2016 13:22
-
-
Save lovetoken/d1ee521583af1db547f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myfun1 <- function(input){ | |
# 함수 실행 조건 | |
stopifnot(input %>% is.numeric) | |
stopifnot(attributes(input)$div %>% is.numeric) | |
# 함수 본문 | |
div <- attributes(input)$div | |
return(sum(input)/div) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment