Skip to content
Snippets Groups Projects
Commit 6c27e517 authored by sanchezi's avatar sanchezi
Browse files

improve doc & README & DESCRIPTION + add verbose

parent ef50b711
No related branches found
No related tags found
No related merge requests found
Pipeline #68427 passed
......@@ -28,6 +28,11 @@ library(parallel)
library(doParallel)
```
This vignette shows how to use parallelization on a data set containing a set of animals weighted over time with the walk-over-weighing system.
The `lambs` data set is included in the **kfino** package and can be loaded using the `data()` function.
We use the **parallel** and **doParallel** libraries to accelerate the computing time.
```{r}
data(lambs)
myIDE<-unique(lambs$IDE)
......@@ -35,11 +40,6 @@ myIDE<-unique(lambs$IDE)
print(myIDE)
```
This vignette shows how to use parallelization on a data set containing a set of animals weighted over time with the walk-over-weighing system.
The `lambs` data set is included in the **kfino** package and can be loaded using the `data()` function.
We use the **parallel** and **doParallel** libraries to accelerate the computing time.
# Without parallelization
```{r,error=TRUE}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment