From 9843bff7769a29171b0bcc4e3c4e38aea3cc4f32 Mon Sep 17 00:00:00 2001
From: aduvermy <arnaud.duvermy@ens-lyon.fr>
Date: Sun, 28 Jan 2024 21:58:21 +0100
Subject: [PATCH] retry

---
 vignettes/rnaseq_notOnly.Rmd | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/vignettes/rnaseq_notOnly.Rmd b/vignettes/rnaseq_notOnly.Rmd
index a1bc5d9..8d01b76 100644
--- a/vignettes/rnaseq_notOnly.Rmd
+++ b/vignettes/rnaseq_notOnly.Rmd
@@ -37,7 +37,7 @@ data("iris")
 plot(density(unlist(iris$Sepal.Width)))
 ```
 
-Given this observation, we opt to fit a model for each species using a Gaussian family model. Details about model family [here](https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/family).
+Given this observation, we opt to fit a model for each species using a Gaussian family model (default). Details about model family [here](https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/family).
 
 
 ```{r example-fitModelParallel_nonRNA, warning = FALSE, message = FALSE}
@@ -45,7 +45,6 @@ l_tmb_iris <- fitModelParallel(
                 formula =  Sepal.Width ~ Sepal.Length ,
                 data = iris,
                 group_by = "Species",
-                family = gaussian(),
                 n.cores = 1)
 
 tidy_results(l_tmb_iris)
-- 
GitLab