BaşlayınÜcretsiz Başlayın

Extracting Parameters for Univariate Case

In the previous exercise, you fitted a univariate Gaussian mixture model with flexmix and saved it into the object fit_mix_example. The aim of this module is to analyze the results extracting the estimated parameters.

Bu egzersiz

Mixture Models in R

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Use the function prior() to get the proportions of each cluster.
  • Use the function parameters() and the respective argument to get the parameters for each component.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

proportions <- ___(fit_mix_example)
comp_1 <- parameters(___, component = ___)
comp_2 <- parameters(___, component = ___)
comp_3 <- parameters(___, component = ___)
Kodu Düzenle ve Çalıştır