getBdim | R Documentation |
This function outputs dimensionality of blocks of variable block structure.
getBdim(object)
## S4 method for signature 'VB'
getBdim(object)
## S4 method for signature 'HMMVB'
getBdim(object)
object |
Object of class "VB" or "HMMVB". |
# accessing bdim in instance of class VB
Vb <- vb(2, dim=10, bdim=c(4,6), numst=c(3,11), varorder=list(c(1:4),c(5:10)))
getBdim(Vb)
# accessing bdim in instance of class HMMVB
data("sim3")
Vb <- vb(2, dim=40, bdim=c(10,30), numst=c(3,5), varorder=list(c(1:10),c(11:40)))
set.seed(12345)
hmmvb <- hmmvbTrain(sim3[,1:40], VbStructure=Vb)
getBdim(hmmvb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.