We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Printing a JointModelSamples object appears to have the wrong number of chains
mp <- sampleStanModel( jm, data = jdat, iter_sampling = 1000, iter_warmup = 1000, chains = 3, parallel_chains = 4 ) mp
prints
JointModelSamples Object with: # of samples per chain = 1000 # of chains = 1 Variables: beta_os_cov[3] link_coefficients ...
but I expect number of chains should be 3.
This comes from
jmpost/R/JointModelSamples.R
Line 107 in c29f73f
as.CmdStanMCMC(object)$num_chains()
eg
as.CmdStanMCMC(mp)$num_chains() [1] 3
The text was updated successfully, but these errors were encountered:
gowerc
Successfully merging a pull request may close this issue.
Printing a JointModelSamples object appears to have the wrong number of chains
prints
but I expect number of chains should be 3.
This comes from
jmpost/R/JointModelSamples.R
Line 107 in c29f73f
and I think it should be
eg
The text was updated successfully, but these errors were encountered: