From b9d485b032b391340abe6e5111ef2faf11a97389 Mon Sep 17 00:00:00 2001 From: Rod Mazloomi Date: Wed, 13 Apr 2022 10:24:09 -0400 Subject: [PATCH] Update model-many.Rmd (#991) Fixed small typo. We want to refer to the column `sims`, as opposed to `sim` which is the name of the entire tribble. --- extra/model/model-many.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/model/model-many.Rmd b/extra/model/model-many.Rmd index eff7d64..a5ef843 100644 --- a/extra/model/model-many.Rmd +++ b/extra/model/model-many.Rmd @@ -431,7 +431,7 @@ sim |> mutate(sims = invoke_map(f, params, n = 10)) ``` -Note that technically `sim` isn't homogeneous because it contains both double and integer vectors. +Note that technically `sims` isn't homogeneous because it contains both double and integer vectors. However, this is unlikely to cause many problems since integers and doubles are both numeric vectors. ### From multivalued summaries