Zhiguang Huo (Caleb)
Wed Sep 2nd, 2020
## {
## return(x^3)
## }
## $x
## <environment: R_GlobalEnv>
## function (..., na.rm = FALSE) .Primitive("sum")
## NULL
## NULL
## NULL
X <- matrix(c(189, 104, 10845, 10933), nrow=2,
dimnames=list(Treatment=c("Placebo","Aspirin"),
"Myocardial Infarction"=c("Yes", "No")))
X
## Myocardial Infarction
## Treatment Yes No
## Placebo 189 10845
## Aspirin 104 10933
## [1] 1.832054
## [1] 1.832054
odds.ratio2 <- function(X) ## if the function has only one line, don't even need brackets
X[1,1]*X[2,2]/(X[1,2]*X[2,1])
odds.ratio2(X)
## [1] 1.832054
odds.ratio <- function(X, conf.level=0.95){
OR <- X[1,1]*X[2,2]/(X[1,2]*X[2,1])
logOR.SE <- sqrt(sum(1/X))
alpha <- 1 - conf.level
CI.lower <- exp(log(OR) - qnorm(1 - alpha/2)*logOR.SE)
CI.upper <- exp(log(OR) + qnorm(1 - alpha/2)*logOR.SE)
# qnorm returns the quantiles of a Gaussian distribution.
out <- list(OR=OR, CI=c(CI.lower, CI.upper), conf.level=conf.level)
return(out)
}
odds.ratio(X)
## $OR
## [1] 1.832054
##
## $CI
## [1] 1.440042 2.330780
##
## $conf.level
## [1] 0.95
## [1] 1.832054
odds.ratio <- function(X, conf.level=0.95){
cat("calculating odds ratio...","\n")
OR <- X[1,1]*X[2,2]/(X[1,2]*X[2,1])
logOR.SE <- sqrt(sum(1/X))
cat("calculating confidence interval...","\n")
alpha <- 1 - conf.level
CI.lower <- exp(log(OR) - qnorm(1 - alpha/2)*logOR.SE)
CI.upper <- exp(log(OR) + qnorm(1 - alpha/2)*logOR.SE)
cat("done, returning output...","\n")
out <- list(OR=OR, CI=c(CI.lower, CI.upper), conf.level=conf.level)
return(out)
}
out <- odds.ratio(X)
## calculating odds ratio...
## calculating confidence interval...
## done, returning output...
odds.ratio <- function(X, conf.level=0.95){
stopifnot(!missing(X), is.matrix(X),dim(X)==c(2,2),X>0)
cat("calculating odds ratio...","\n")
OR <- X[1,1]*X[2,2]/(X[1,2]*X[2,1])
logOR.SE <- sqrt(sum(1/X))
cat("calculating confidence interval...","\n")
alpha <- 1 - conf.level
CI.lower <- exp(log(OR) - qnorm(1 - alpha/2)*logOR.SE)
CI.upper <- exp(log(OR) + qnorm(1 - alpha/2)*logOR.SE)
cat("done, returning output...","\n")
out <- list(OR=OR, CI=c(CI.lower, CI.upper), conf.level=conf.level)
return(out)
}
out <- odds.ratio(X)
## calculating odds ratio...
## calculating confidence interval...
## done, returning output...
tryCatch function allows your code to be excuted even error exists
# result = tryCatch({
# expr
# }, warning = function(w) {
# warning-handler-code
# }, error = function(e) {
# error-handler-code
# }
# )
result = tryCatch({
2^6
}, warning = function(w) {
print(paste("MY_WARNING: ",w))
return("warning")
}, error = function(e) {
print(paste("MY_ERROR: ",e))
return("error")
}
)
result
## [1] 64
result = tryCatch({
1:3 + 1:2
}, warning = function(w) {
print(paste("MY_WARNING: ",w))
return("warning")
}, error = function(e) {
print(paste("MY_ERROR: ",e))
return("error")
}
)
## [1] "MY_WARNING: simpleWarning in 1:3 + 1:2: longer object length is not a multiple of shorter object length\n"
## [1] "warning"
result = tryCatch({
"A" + "B"
}, warning = function(w) {
print(paste("MY_WARNING: ",w))
return("warning")
}, error = function(e) {
print(paste("MY_ERROR: ",e))
return("error")
}
)
## [1] "MY_ERROR: Error in \"A\" + \"B\": non-numeric argument to binary operator\n"
## [1] "error"
Scoping is the set of rules that govern how R looks up the value of a symbol.
## [1] 1 2 3
## [1] 1
## [1] 1
## [1] 15
## [1] 15
## 1 2
## 1 2
## [1] 3
## [1] 3
## [1] 2
## [1] 1
## [,1] [,2] [,3]
## [1,] 1 2 3
## [2,] 2 4 6
## [1] FALSE TRUE FALSE FALSE FALSE TRUE
## List of 2
## $ arg: num 2
## $ brg: num 10
## List of 2
## $ arg: num 2
## $ brg: num 10
## List of 2
## $ arg: num 2
## $ brg: num 10
2. then by prefix matching,
## List of 2
## $ arg: num 2
## $ brg: num 10
3. finally by position matching
## List of 2
## $ a: num 2
## $ b: num 10
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] 5.5
## [1] "/Users/zhuo/Dropbox (UFL)/teaching/2020FALL/lectures/Week1_Basic/functions"
## [1] "/Users/zhuo"
## [1] "/Users/zhuo/Dropbox (UFL)/teaching/2020FALL/lectures/Week1_Basic/functions"
## [1] "functions_files" "functions.html" "functions.rmd" "tmp"
## [1] "Applications"
## [2] "ClueGOConfiguration"
## [3] "correlation_FDR_table.txt"
## [4] "CytoscapeConfiguration"
## [5] "Data_Correlation.txt"
## [6] "Desktop"
## [7] "Documents"
## [8] "Downloads"
## [9] "Dropbox"
## [10] "Dropbox (Personal)"
## [11] "Dropbox (UFL)"
## [12] "GD-2.50"
## [13] "GD-2.50.tar.gz"
## [14] "httpsanalysis.ingenuity.compa_206442"
## [15] "Library"
## [16] "Movies"
## [17] "Music"
## [18] "perl5"
## [19] "Pictures"
## [20] "powerFigure_primary.pdf"
## [21] "Public"
## [22] "randomization_list.csv"
## [23] "VennDiagram_6vs18_6vs24.pdf"
## [24] "Zotero"
## [1] FALSE
## [1] FALSE
## Warning in dir.create("tmp"): 'tmp' already exists
## Warning in dir.create("tmp"): 'tmp' already exists
## [1] 50005000
## Time difference of 0.001255035 secs
## [1] 50005000
## Time difference of 0.007375002 secs
## [1] 2
## [1] 1
## function(x=4) g(x) + h(x)
## $x
## [1] 4
## g(x) + h(x)
## <environment: R_GlobalEnv>
Generally, an environment is similar to a list, with following important exceptions.
There are four special environments:
## [1] ".GlobalEnv" "package:stats" "package:graphics"
## [4] "package:grDevices" "package:utils" "package:datasets"
## [7] "package:methods" "Autoloads" "package:base"
## <environment: package:stats>
## attr(,"name")
## [1] "package:stats"
## attr(,"path")
## [1] "/Library/Frameworks/R.framework/Versions/3.6/Resources/library/stats"
## Package 'mclust' version 5.4.5
## Type 'citation("mclust")' for citing this R package in publications.
## [1] ".GlobalEnv" "package:mclust" "package:stats"
## [4] "package:graphics" "package:grDevices" "package:utils"
## [7] "package:datasets" "package:methods" "Autoloads"
## [10] "package:base"
## <environment: namespace:utils>
##
## Attaching package: 'combinat'
## The following object is masked from 'package:utils':
##
## combn
## [1] ".GlobalEnv" "package:combinat" "package:mclust"
## [4] "package:stats" "package:graphics" "package:grDevices"
## [7] "package:utils" "package:datasets" "package:methods"
## [10] "Autoloads" "package:base"
## <environment: namespace:combinat>
## <environment: namespace:utils>
## <environment: namespace:combinat>
## function (x)
## dim(x)[1L]
## <bytecode: 0x7fe95df18e70>
## <environment: namespace:base>
## [1] 2
## [1] 2 2
## [1] 2
## this is how R prevents external/global functions from affecting utilities functions inside a package
environment(nrow)
## <environment: namespace:base>
## <environment: R_GlobalEnv>
## NULL
Constructive confidence interval for one sided t test, verifying arguments.
Read functional programming example http://adv-r.had.co.nz.