R/okara is an R package with miscellaneous R functions that are useful to me. Additionally, some of these R functions are frequently used by students in my courses.
To install okara
package, you need to install and/or load the
devtools
package. The below
code automatically installs and/or loads it for you.
if("devtools" %in% rownames(utils::installed.packages()) == FALSE) {suppressWarnings(suppressMessages(install.packages("devtools")))}
suppressWarnings(suppressMessages(library("devtools")))
You can install the okara
package from
GitHub with the code below.
devtools::install_github("omerkara/okara")
You can also use the below codes to install the okara
package with
dependencies and vignettes.
devtools::install_github("omerkara/okara", dependencies = TRUE) ## With dependencies.
devtools::install_github("omerkara/okara", build_vignettes = TRUE) ## Builds the vignette on the fly.
You can load the okara
package with the code below.
library("okara")
You can get help about the okara
package with the code below.
help(package = "okara")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.