Skip to content

Instantly share code, notes, and snippets.

@lovetoken
Created February 16, 2016 13:22
Show Gist options
  • Save lovetoken/d1ee521583af1db547f1 to your computer and use it in GitHub Desktop.
Save lovetoken/d1ee521583af1db547f1 to your computer and use it in GitHub Desktop.
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