Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 967 Bytes

File metadata and controls

47 lines (34 loc) · 967 Bytes

clust431

The goal of clust431 is to …

Installation

You can install the released version of clust431 from CRAN with:

install.packages("clust431")

em_clust() code example

This is a basic example which shows you how to solve a common problem:

library(clust431)
library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
## iris2 <- iris %>% select(-Species)
## em_clust(iris2,2)

What is special about using README.Rmd instead of just README.md? You can include R chunks like so:

iris2 <- iris %>% select(-Species)
#em_clust(iris2,2)

I wasn’t able to figure the code out for this submission.