From c2bb646634a0da8403579aff2073eacd4cf1264d Mon Sep 17 00:00:00 2001 From: Bob Carpenter Date: Mon, 29 Jan 2024 11:19:29 -0500 Subject: [PATCH] Update r.md Fixes issue #203 --- docs/languages/r.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/languages/r.md b/docs/languages/r.md index d67e36b4..7eb78208 100644 --- a/docs/languages/r.md +++ b/docs/languages/r.md @@ -65,7 +65,7 @@ Create a Stan Model instance. _Usage_ ```R -StanModel$new(lib, data, rng_seed) +StanModel$new(lib, data, seed) ``` @@ -75,7 +75,7 @@ _Arguments_ - `data` Either a JSON string literal, a path to a data file in JSON format ending in ".json", or the empty string. - - `rng_seed` Seed for the RNG used in constructing the model. + - `seed` Seed for the RNG used in constructing the model. - `stan_args` A list of arguments to pass to stanc3 if the model is not already compiled.