| P_exp | R Documentation |
Title
P_exp(l_breaks, r_breaks, rate, n_quad = 1)
l_breaks |
a (m+1) vector defining a partition of the interval L into m sets |
r_breaks |
a (n+1) vector defining a partition of the interval R into n sets |
rate |
the rate of the exponential distribution |
the n x m matrix P of transition probabilities
# Compute P for exponential measurement error with rate = 1 # The latent interval L = [0,10] is divided into 20 intervals of length 0.5 # The observed interval R = [0,15] is divided into 15 intervals of length 1. l_breaks <- seq(0,10, length.out = 21) r_breaks <- seq(0,15, length.out = 16) P <- P_exp(l_breaks, r_breaks, rate = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.