I am working with DepmixS4 package in R. I was able to fit my NHMM by using below code:
NHMM <- depmix(list(Clust1.North~1,Clust2.North~1,Clust1.South~1,Clust2.South~1), nstates = 4, family=list(gaussian(),gaussian(),gaussian(),gaussian()), data = NHMM.Data, transition = ~Clust1.temp+Clust2.temp)
NHMM.fit<- fit(NHMM)
I would like to plot the distribution of each state of my model.
Any help will be appreciated!