README.md

okara

Project Status: Active - The project has reached a stable, usable
state and is being actively
developed. Dependencies License:
MIT

Ă–mer Kara

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.

Installation

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.

Loading

You can load the okara package with the code below.

library("okara")

Get Help

You can get help about the okara package with the code below.

help(package = "okara")


omerkara/okara documentation built on Nov. 21, 2023, 7:56 p.m.