File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ vignette: >
23
23
- [ Haploid and diploid individuals] ( #ploidy )
24
24
- [ Literature cited] ( #lit )
25
25
26
+ ``` {r, echo = FALSE}
27
+ oldpar <- par();
28
+ ```
29
+
26
30
<a name = " introduction " >Introduction</a >
27
31
================================================================================
28
32
@@ -97,7 +101,7 @@ We can likewise use a 4 by 4 square matrix to represent the values of the arrows
97
101
98
102
``` {r}
99
103
arrows_2_dat <- rnorm(n = 4 * 4, mean = 0, sd = 0.1);
100
- arrows_2_mat <- matrix(data = arrows_1_dat , nrow = 4, ncol = 4);
104
+ arrows_2_mat <- matrix(data = arrows_2_dat , nrow = 4, ncol = 4);
101
105
print(arrows_2_mat);
102
106
```
103
107
@@ -215,3 +219,6 @@ The evolutionary algorithm does not distinguish between haploid and diploid geno
215
219
================================================================================
216
220
217
221
222
+ ``` {r, echo = FALSE}
223
+ par(oldpar);
224
+ ```
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ vignette: >
21
21
- [ Additional guidance] ( #additional )
22
22
- [ Literature cited] ( #lit )
23
23
24
+ ``` {r, echo = FALSE}
25
+ oldpar <- par();
26
+ ```
27
+
24
28
<a name = " introduction " >Introduction</a >
25
29
================================================================================
26
30
@@ -411,3 +415,7 @@ Additional guidance can be found in the [package notes](https://bradduthie.githu
411
415
================================================================================
412
416
413
417
418
+ ``` {r, echo = FALSE}
419
+ par(oldpar);
420
+ ```
421
+
You can’t perform that action at this time.
0 commit comments