Displaying 1 result from an estimated 1 matches for "powerdf".
Did you mean:
powerd
2017 Sep 20
1
How to use depmix for HMM with intial parameters
...ncol = 3,
byrow = TRUE)
coeffval_matrix=matrix(c(0.1295604,0.6464059,0.2240336,
0.2091671,0.5267220,0.2641110,
0.3430697,0.3350215,0.3219088), nrow = 3, ncol =
3, byrow = TRUE)
emission_matrix=list(meanval_matrix,sigmaval_matrix,coeffval_matrix)
powerdf is a column from my dataset which look like something = 19.0, 18.0,
24.0...............it has some 30 thousand rows
I tried using the code below and got an error
mod= depmix( response = power~1, data = powerdf, nstates=3,
instart=intial_prob_matrix,
trstart=transition_...