CommencerCommencer gratuitement

Crimes data with `flexmix`

Count data is everywhere, ranging from the products bought by the customers in a shop to the number of interactions a group of users have on Twitter. Being able to extract valuable information as subpopulation with similar behavior is essential to several applications. Poisson mixture models (PMM) are a convenient tool to cluster count data.

The objectives of this lesson are (1) to explore the dataset, (2) to apply PMM using a statistical criterion to select the number of clusters, (3) to analyze the parameters of the model and (4) to illustrate how the communities are grouped depending on the level of crimes

Cet exercice fait partie du cours

Mixture Models in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Check the dimension
___(crimes)

# Check with glimpse
___(crimes)

# Transform into a matrix, without community
matrix_crimes <- crimes %>%
  select(-___) %>%  
  ___()

# Check the first values
___(matrix_crimes)
Modifier et exécuter le code