Handwritten digits with `flexmix`
The digits_sample_2
is a data frame that has 478 observations, each of them representing a binary image of a handwritten digit formed by 16x16 pixels. The aims of this exercise are (1) to explore these data, (2) to fit a Bernoulli mixture model using flexmix
and (3) to analyze the resulting clusters.
This exercise is part of the course
Mixture Models in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# transform into matrix
digits_sample_2 <- ___
# dimension
___
# look to the first observation
show_digit(digits_sample_2[___,])
# look to the last observation
___(digits_sample_2[nrow(___),])