title: "Mixed Data Clustering using Mixture Model documentation"
author: "Nour Dass HAMMADI & Farida BENCHALLAL"
date: "r Sys.Date()
"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{MIXCLUSTERING_Vignette}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
Clustering Method with mixture model using EM algorithm for mixed data ( categorical features and continious features), the package has two functions: MclustBis() for clustering and plotting for displaying results
library(dplyr) library(tidyverse) library(gtools) library(FactoMineR) library(bayess) library(mvtnorm) library(devtools) library(MIXCLUSTERING)
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
x <- mtcars x$vs = as.factor(x$vs) x$am = as.factor(x$am) x$gear = as.factor(x$gear)
mix_clust_kmeans <- My_Mix_clustering(x, 3, 14, 'kmeans') mix_clust_random <- My_Mix_clustering(x, 3, 14, 'random')
affiche_graphe(mix_clust_kmeans) affiche_graphe(mix_clust_random)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.