knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

UnsupLP1

Travis build status

UnsupLP1 is a sample package written for CS599 - Unsupervised Learning, which demonstrates my ability to:

Installation

You can install a development version of this package from GitHub with:

# install.packages("devtools")
devtools::install_github("ChrisKeefe/UnsupLP1")

Usage

Here are some basic examples of how to use the functions in this package. For more complete usage information, please see the function documentation.

library(UnsupLP1)
## basic example code
# Cluster the iris data set into three clusters:
KMEANS(iris[1:4], K=3)

# Split a data matrix into 80% TRAIN and 20% TEST
split_train_and_test(iris, train.prop=0.8, test.prop=0.2)


ChrisKeefe/UnsupLP1 documentation built on Oct. 8, 2020, 5:37 a.m.