@@ -68,6 +68,9 @@ as.shinystan(X, ppd = TRUE, seed = 1234, model_name = NULL, note = NULL, ...)
6868
6969# S4 method for class 'CmdStanMCMC'
7070as.shinystan(X , pars = NULL , model_name = NULL , note = NULL , ... )
71+
72+ # S4 method for class 'CmdStanMCMC_CSV'
73+ as.shinystan(X , pars = NULL , model_name = NULL , note = NULL , ... )
7174```
7275
7376## Arguments
@@ -163,35 +166,40 @@ object and `FALSE` otherwise.
163166
164167## Functions
165168
166- - ` as.shinystan, array-method ` : Create a ` shinystan ` object from a 3-D
169+ - ` as.shinystan( array) ` : Create a ` shinystan ` object from a 3-D
167170 [ ` array ` ] ( https://rdrr.io/r/base/array.html ) of simulations. The array
168171 should have dimensions corresponding to iterations, chains, and
169172 parameters, in that order.
170173
171- - ` as.shinystan, list-method ` : Create a ` shinystan ` object from a
174+ - ` as.shinystan( list) ` : Create a ` shinystan ` object from a
172175 [ ` list ` ] ( https://rdrr.io/r/base/list.html ) of matrices. Each
173176 [ ` matrix ` ] ( https://rdrr.io/r/base/matrix.html ) (or 2-D array) should
174177 contain the simulations for an individual chain and all of the
175178 matrices should have the same number of iterations (rows) and
176179 parameters (columns). Parameters should have the same names and be in
177180 the same order.
178181
179- - ` as.shinystan, mcmc.list-method ` : Create a ` shinystan ` object from an
182+ - ` as.shinystan( mcmc.list) ` : Create a ` shinystan ` object from an
180183 ` mcmc.list ` object (coda).
181184
182- - ` as.shinystan, stanfit-method ` : Create a ` shinystan ` object from a
183- ` stanfit ` object
184- ( [ rstan ] ( https://mc-stan.org/rstan/reference/rstan.html ) ). Fewer
185- optional arguments are available for this method because all important
186- information can be taken automatically from the ` stanfit ` object.
185+ - ` as.shinystan( stanfit) ` : Create a ` shinystan ` object from a ` stanfit `
186+ object ( [ rstan ] ( https://mc-stan.org/rstan/reference/rstan.html ) ).
187+ Fewer optional arguments are available for this method because all
188+ important information can be taken automatically from the ` stanfit `
189+ object.
187190
188- - ` as.shinystan, stanreg-method ` : Create a ` shinystan ` object from a
189- ` stanreg ` object
191+ - ` as.shinystan( stanreg) ` : Create a ` shinystan ` object from a ` stanreg `
192+ object
190193 ([ rstanarm] ( https://mc-stan.org/rstanarm/reference/rstanarm-package.html ) ).
191194
192- - ` as.shinystan, CmdStanMCMC-method ` : Create a ` shinystan ` object from a
195+ - ` as.shinystan( CmdStanMCMC) ` : Create a ` shinystan ` object from a
193196 ` CmdStanMCMC ` object (cmdstanr).
194197
198+ - ` as.shinystan(CmdStanMCMC_CSV) ` : Create a ` shinystan ` object from a
199+ ` CmdStanMCMC_CSV ` object created using
200+ [ ` cmdstanr::as_cmdstan_fit() ` ] ( https://mc-stan.org/cmdstanr/reference/read_cmdstan_csv.html )
201+ (cmdstanr).
202+
195203## See also
196204
197205[ ` launch_shinystan ` ] ( https://mc-stan.org/shinystan/dev/reference/launch_shinystan.md )
0 commit comments