- On Windows, users can now install and use CmdStan with WSL (Windows
Subsystem for Linux). Set
wsl=TRUEininstall_cmdstan()to install CmdStan for use with WSL. This can offer significant speedups compared to native Windows execution. (#677, @andrjohns)
-
In
cmdstan_default_path()we now ignore directories inside.cmdstanthat don't start with"cmdstan-". (#651) -
Fixed Windows issue related to not locating
grep.exeor when it is located in a path with spaces. (@weshinsley, #661, #663) -
Fixed a bug with diagnostic checks when ebfmi is NaN.
-
Fixed a bug that caused issues when using
~or.in paths supplied to thecmdstanr_write_stan_file_dirglobal option. -
Fixed a bug that caused the
time()method fail when some of the chains failed to finish succesfully.
-
Refactored toolchain installation and checks for R 4.x on Windows and added support for Rtools42. (#645)
-
Expanded the use of
CMDSTANenvironment variable to point to CmdStan installation or directory containing CmdStan installations. (#643) -
New vignette on how to handle deprecations using the
$format()method. (#644)
- Temporarily disable
format="draws_rvars"in the$draws()method due to a bug. Until this is fixed users can make use ofposterior::as_draws_rvars()to convert draws from CmdStanR to thedraws_rvarsformat. (#640)
-
Fixed bug that caused stdour/stderr not being read at the end of optimization. (#522)
-
Fixed issue with handling
NAas the reported external process status. (#544, @myshkin) -
Fixed issue with handling models with no parameters and CmdStan 2.27+.
-
Default directory changed to
.cmdstaninstead of.cmdstanrso that CmdStanPy and CmdStanR can use the same CmdStan installations. Using.cmdstanrwill continue to be supported until version 1.0 butinstall_cmdstan()will now default to.cmdstanand CmdStanR will first look for.cmdstanbefore falling back on.cmdstanr. (#454) -
New method
diagnose()for CmdstanModel objects exposes CmdStan'sdiagnosemethod for comparing Stan's gradient computations to gradients computed via finite differences. (#485) -
New method
$variables()for CmdstanModel objects that returns a list of variables in the Stan model, their types and number of dimensions. Does not require the model to be compiled. (#519) -
New method
$format()for auto-formatting and canonicalizing the Stan models. (#625) -
Added the option to create
CmdStanModelfrom the executable only with theexe_fileargument. (#564) -
Added a convenience argument
user_headerto$compile()andcmdstan_model()that simplifies the use of an external .hpp file to compile with the model. -
Added the
cmdstanr_force_recompileglobal option that is used for forcing recompilation of Stan models. (#580) -
New method
$code()for all fitted model objects that returns the Stan code associated with the fitted model. (#575) -
New method
$diagnostic_summary()for CmdStanMCMC objects that summarizes the sampler diagnostics (divergences, treedepth, ebfmi) and can regenerate the related warning messages. (#205) -
New
diagnosticsargument for the$sample()method to specify which diagnostics are checked after sampling. Replacesvalidate_csvargument. (#205) -
Added E-BFMI checks that run automatically post sampling. (#500, @jsocolar)
-
New methods for
posterior::as_draws()for CmdStanR fitted model objects. These are just wrappers around the$draws()method provided for convenience. (#532) -
write_stan_file()now choose file names deterministically based on the code so that models do not get unnecessarily recompiled when calling the function multiple times with the same code. (#495, @martinmodrak) -
The
dirargument forwrite_stan_file()can now be set with a global option. (#537) -
write_stan_json()now handles data of class"table". Tables are converted to vector, matrix, or array depending on the dimensions of the table. (#528) -
Improved processing of named lists supplied to the
dataargument to JSON data files: checking whether the list includes all required elements/Stan variables; improved differentiating arrays/vectors of length 1 and scalars when generating JSON data files; generating floating point numbers with decimal points to fix issue with parsing large numbers. (#538) -
install_cmdstan()now automatically installs the Linux ARM CmdStan when Linux distributions running on ARM CPUs are detected. (#531) -
New function
as_mcmc.list()for converting CmdStanMCMC objects to mcmc.list objects from the coda package. (#584, @MatsuuraKentaro)
-
Fixed issue with retrieving draws with models with spaces in their names. (#453)
-
Fixed bug with spaces in path to the temporary folder on Windows. (#460)
-
Fixed issue with not reporting model executable name clashing with folder name. (#461)
-
New function
as_cmdstan_fit()that creates CmdStanMCMC/MLE/VB objects directly from CmdStan CSV files. (#412) -
read_cmdstan_csv()now also returns chain run times for MCMC sampling CSV files. (#414) -
Faster CSV reading for multiple chains. (#419)
-
New
$profiles()method for fitted model objects accesses profiling information from R if profiling used in the Stan program. Support for profiling Stan programs requires CmdStan >= 2.26. (#434) -
New vignette on profiling Stan programs. (#435)
-
New vignette on running Stan on the GPU with OpenCL. OpenCL device ids can now also be specified at runtime. (#439)
-
New check for invalid parameter names when supplying init values. (#452, @mike-lawrence)
-
Suppressing compilation messages when not in interactive mode. (#462, @wlandau)
-
New
error_on_NAargument forcmdstan_version()to optionally returnNULL(instead of erroring) if the CmdStan path is not found (#467, @wlandau). -
Global option
cmdstanr_max_rowscan be set as an alternative to specifyingmax_rowsargument to the$print()method. (#470) -
New
output_basenameargument for the model fitting methods. Can be used in conjunction withoutput_dirto get completely predictable output CSV file paths. (#471) -
New
formatargument for$draws(),$sampler_diagnostics(),read_cmdstan_csv(), andas_cmdstan_fit(). This controls the format of the draws returned or stored in the object. Changing the format can improve speed and memory usage for large models. (#482)
-
Fixed reading inverse mass matrix with values written in scientific format in the CSV. (#394)
-
Fixed error caused by an empty data list. Previously if a model didn't require data then
datahad to either be NULL or be a non-empty list, but nowlist()is allowed. (#403)
-
Added
$sample_mpi()for MCMC sampling with MPI. (#350) -
Added informative messages on compile errors caused by precompiled headers (PCH). (#384)
-
Added the
cmdstanr_verboseoption for verbose mode. Intended for troubleshooting, debugging and development. See end of How does CmdStanR work? vignette for details. (#392) -
New
$loo()method for CmdStanMCMC objects. Requires computing pointwise log-likelihood in Stan program. (#366) -
The
fitted_paramsargument to the$generate_quantities()method now also accepts CmdStanVB,posterior::draws_array, andposterior::draws_matrixobjects. (#390) -
The
$optimize()method now supports all of CmdStan's tolerance-related arguments for (L)BFGS. (#398) -
The documentation for the R6 methods now uses
@param, which allows package developers to import the CmdStanR documentation using roxygen2's@inheritParams. (#408)
-
Fixed bug with reading Stan CSV when grep used coloring by default (#364,#371)
-
Depend on posterior v0.1.3 to avoid a potential error in
$summary(). (#383)
-
Added support for native execution on the macOS with the M1 ARM-based CPU. (#375)
-
Added threading support via
threadsargument for$optimize()and$variational()(was already available viathreads_per_chainfor$sample()). (#369)
-
Fixed bug with processing stanc_options in
check_syntax(). (#345) -
Fixed bug on access to one variable via
draws(). (#348)
compile()andcheck_syntax()methods gain argumentpedanticfor turning on pedantic mode, which warns about issues with the model beyond syntax errors. (#361)
-
Fix potential indexing error if using
read_cmdstan_csv()with CSV files created by CmdStan without CmdStanR. (#291, #292, @johnlees) -
Fix error when returning draws or sampler diagnostics for a fit with only warmup and no samples. (#288, #293)
-
Fix trailing slashes issue for
dirincmdstan_model()andoutput_dirin fitting methods. (#281, #294) -
Fix dimensions error when processing a list of matrices passed in as
data. (#296, #302) -
Fix reporting of time after using
fixed_parammethod. (#303, #307) -
With
refresh = 0, no output other than error messages is printed with$optimize()and$variational(). (#324) -
Fix issue where names of generated files could clash. (#326, #328)
-
Fix missing
include_pathsin$syntax_check(). (#335, @mike-lawrence)
-
CSV reading is now faster by using
data.table::fread(). (#318) -
install_cmdstan()gains argumentversionfor specifying which version of CmdStan to install. (#300, #308) -
New function
check_cmdstan_toolchain()that checks if the appropriate toolchains are available. (#289) -
$sample()method for CmdStanModel objects gains argumentchain_idsfor specifying custom chain IDs. (#319) -
Added support for the
sig_figsargument in CmdStan versions 2.25 and above. (#327) -
Added checks if the user has the necessary permissions in the RTools and temporary folders. (#343)
- New
$check_syntax()method for CmdStanModel objects. (#276, #277)
-
User is notified by message at load time if a new release of CmdStan is available. (#265, #273)
-
write_stan_file()replaceswrite_stan_tempfile(), which is now deprecated. With the addition of thedirargument, the file written is not necessarily temporary. (#267, #272)
- New knitr engine
eng_cmdstan()and functionregister_knitr_engine()that allow Stan chunks in R markdown documents to be processed using CmdStanR instead of RStan. The new vignette R Markdown CmdStan Engine provides a demonstration. (#261, #264, @bearloga)
- Beta release