knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
UnsupLP1 is a sample package written for CS599 - Unsupervised Learning, which demonstrates my ability to:
You can install a development version of this package from GitHub with:
# install.packages("devtools") devtools::install_github("ChrisKeefe/UnsupLP1")
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.