epiverse-trace / epiverse-trace/tutorials-late
make clean function with compartments as arguments
Open
Beginner friendly
- Dominant language
- R
- Stars
- 2
- Forks
- 5
- Avg merge
- 4m
- Merged PRs (30d)
- 2
Description
instead of
```r
initial_conditions_inf <- c(
S = 1 - initial_i, E = 0, I = initial_i, R = 0, V = 0
)
```
do:
```r
initial_conditions_inf <- c(
S = 1 - initial_i,
E = 0,
I = initial_i,
R = 0,
V = 0
)
```
Contributor guide
Research direction
Search the tutorial sources for initial_conditions_inf and the compact c(...) formatting shown in the issue. Reformat the matching compartment definitions with one assignment per line, then review the rendered tutorial to confirm the examples are consistently readable.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 68/100