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

retry

parent eb5da035
Branches
Tags
No related merge requests found
......@@ -16,6 +16,7 @@ knitr::opts_chunk$set(
```{r setup}
devtools::load_all()
library(HTRfit)
```
......@@ -39,6 +40,7 @@ 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).
```{r example-fitModelParallel_nonRNA, warning = FALSE, message = FALSE}
l_tmb_iris <- fitModelParallel(
formula = Sepal.Width ~ Sepal.Length ,
......@@ -46,5 +48,6 @@ l_tmb_iris <- fitModelParallel(
group_by = "Species",
family = gaussian(),
n.cores = 1)
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