R/data.R
draws_to_csv.Rd
Write posterior draws objects to CSV files suitable for running standalone generated quantities with CmdStan.
draws_to_csv(
draws,
sampler_diagnostics = NULL,
dir = tempdir(),
basename = "fittedParams"
)
A posterior::draws_*
object.
Either NULL
or a posterior::draws_*
object
of sampler diagnostics.
(string) An optional path to the directory where the CSV files will be written. If not set, temporary directory is used.
(string) If dir
is specified, `basename`` is used for naming
the output CSV files. If not specified, the file names are randomly generated.
Paths to CSV files (one per chain).
draws_to_csv()
generates a CSV suitable for running standalone generated
quantities with CmdStan. The CSV file contains a single comment #num_samples
,
which equals the number of iterations in the supplied draws object.
The comment is followed by the column names. The first column is the lp__
value,
followed by sampler diagnostics and finnaly other variables of the draws object.
#' If the draws object does not contain the lp__
or sampler diagnostics variables,
columns with zeros are created in order to conform with the requirements of the
standalone generated quantities method of CmdStan.
The column names line is finally followed by the values of the draws in the same order as the column names.
# \dontrun{
draws <- posterior::example_draws()
draws_csv_files <- draws_to_csv(draws)
print(draws_csv_files)
#> [1] "/var/folders/s0/zfzm55px2nd2v__zlw5xfj2h0000gn/T//RtmpiACQ3q/fittedParams-202407021533-1-2ac97c.csv"
#> [2] "/var/folders/s0/zfzm55px2nd2v__zlw5xfj2h0000gn/T//RtmpiACQ3q/fittedParams-202407021533-2-2ac97c.csv"
#> [3] "/var/folders/s0/zfzm55px2nd2v__zlw5xfj2h0000gn/T//RtmpiACQ3q/fittedParams-202407021533-3-2ac97c.csv"
#> [4] "/var/folders/s0/zfzm55px2nd2v__zlw5xfj2h0000gn/T//RtmpiACQ3q/fittedParams-202407021533-4-2ac97c.csv"
# draws_csv_files <- draws_to_csv(draws,
# sampler_diagnostic = sampler_diagnostics,
# dir = "~/my_folder",
# basename = "my-samples")
# }