diff --git a/rstan/rstan/inst/NEWS b/rstan/rstan/inst/NEWS index 1bc6918b9..ff3251e46 100644 --- a/rstan/rstan/inst/NEWS +++ b/rstan/rstan/inst/NEWS @@ -1,3 +1,11 @@ +Sun Oct 2013 +1. Bug fixes +2. New features + * add window option to traceplot + * add all optimizers in Stan +3. Changes + * arguments for function stan due to the changes in Stan 2.0 + May 23 2013 1. Bug fixes * the output csv files was using col-major order, which should be @@ -7,7 +15,7 @@ Mar 13 2013 1. Changes * showing progress of sampling at the same line (using \r instead of \n) * plot for stanfit allows multiple pages -2 New features +2. New features * add rstan:::as.mcmc.list to convert stanfit object to coda object diff --git a/rstan/rstan/man/stanc.Rd b/rstan/rstan/man/stanc.Rd index d11dac8d7..b5b7ac09a 100644 --- a/rstan/rstan/man/stanc.Rd +++ b/rstan/rstan/man/stanc.Rd @@ -31,10 +31,9 @@ Translate Stan model specification to C++ code If \code{FALSE}, the model name in the generated C++ code would not contain randomly generated character string so that if model names are given the same, the generated C++ code will have the same class - name defining the model, and the same Rcpp module name, which is used - for R to execute the C++ code regardless if the stan models are the - same of not. Generally, it is recommended not to specify this parameter - or set it to \code{TRUE}. + names defining the model, and the same Rcpp module names, which is used + for R to execute the C++ code for sampling. Generally, it is recommended + not to specify this parameter or set it to \code{TRUE}. } } } @@ -85,8 +84,7 @@ model { } " -r <- stanc(model_code = "stanmodelcode", model_name = "normal1") -# r <- stanc(model_code = stanmodelcode, model_name = "normal1") +r <- stanc(model_code = stanmodelcode, model_name = "normal1") names(r) cat(r$cppcode) }} diff --git a/rstan/rstan/vignettes/rstan.bib b/rstan/rstan/vignettes/rstan.bib index 94fb6b669..499bb0cf9 100644 --- a/rstan/rstan/vignettes/rstan.bib +++ b/rstan/rstan/vignettes/rstan.bib @@ -28,7 +28,7 @@ @misc{rstangettingstarted2012 year = 2013, title = {{RStan} Getting Started}, url = {http://mc-stan.org/}, - note = {https://code.google.com/p/stan/wiki/RStanGettingStarted} + note = {https://github.com/stan-dev/rstan/wiki/RStan-Getting-Started} } @article{rcpp,