Tagged Questions
2
votes
2answers
64 views
R: How to generate a series of exponential deviates that sum to some number
I am trying to generate a series of wait times for a Markov chain where the wait times are exponentially distributed numbers with rate equal to one. However, I don't know the number of transitions of ...
2
votes
2answers
3k views
R library for discrete Markov chain simulation
I am looking for something like the 'msm' package, but for discrete Markov chains. For example, if I had a transition matrix defined as such
Pi <- matrix(c(1/3,1/3,1/3,
0,2/3,1/6,
2/3,0,1/2))
...
2
votes
1answer
182 views
R: MCMClogit confusion
Could anybody explain to me why
simulatedCase <- rbinom(100,1,0.5)
simDf <- data.frame(CASE = simulatedCase)
posterior_m0 <<- MCMClogit(CASE ~ 1, data = simDf, b0 = 0, B0 = 1)
always ...
1
vote
1answer
254 views
conditional random fields package for R
I'm quite new to R (I want to switch from Matlab to an open source tool and love R plots ;)
For my new side project, I need a Conditional Random Fields package for R, that is general purpose and can ...