Skip to content
Snippets Groups Projects
Commit 9843bff7 authored by Arnaud Duvermy's avatar Arnaud Duvermy
Browse files

retry

parent b47e4e79
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ data("iris") ...@@ -37,7 +37,7 @@ data("iris")
plot(density(unlist(iris$Sepal.Width))) 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} ```{r example-fitModelParallel_nonRNA, warning = FALSE, message = FALSE}
...@@ -45,7 +45,6 @@ l_tmb_iris <- fitModelParallel( ...@@ -45,7 +45,6 @@ l_tmb_iris <- fitModelParallel(
formula = Sepal.Width ~ Sepal.Length , formula = Sepal.Width ~ Sepal.Length ,
data = iris, data = iris,
group_by = "Species", group_by = "Species",
family = gaussian(),
n.cores = 1) n.cores = 1)
tidy_results(l_tmb_iris) tidy_results(l_tmb_iris)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment