Mixture Models in R
Victor Medina
Researcher at The University of Edinburgh
The procedure of partitioning a set of observations into a set of meaningful subclasses
$\to$ Help to explore and understand the natural structure in a dataset
gender <- read.csv("gender.csv")
head(gender)
Height Weight BMI
1 73.84702 241.8936 31.18576
2 68.78190 162.3105 24.12104
3 74.11011 212.7409 27.23291
4 71.73098 220.0425 30.06706
5 69.88180 206.3498 29.70803
6 67.25302 152.2122 23.66049
library(ggplot2)
ggplot(gender, aes(x = Weight, y = BMI)) + geom_points()
Mixture Models in R