Skip to content

Commit e2ff5a0

Browse files
committed
fix table ordering
1 parent ca05671 commit e2ff5a0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

main.Rmd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -452,20 +452,20 @@ We thank Mitzi Morris, Kyle Foreman, Daniel Simpson, Bob Carpenter, and Andrew G
452452
# Tables {-}
453453

454454

455-
```{r ba-loglik, message=FALSE}
456-
burn_area_loglik <- read_csv('data/processed/burn-area-loglik.csv')
457-
kable(burn_area_loglik,
458-
caption = 'Performance of burn area models on the test set in descending order. Posterior means are provided with standard deviations in parentheses.',
455+
```{r count-loglik, message=FALSE}
456+
count_loglik <- read_csv('data/processed/count-loglik.csv')
457+
kable(count_loglik,
458+
caption = 'Performance of count models on the test set in descending order. Posterior means are provided with standard deviations in parentheses.',
459459
longtable = TRUE) %>%
460460
kable_styling(latex_options = 'striped')
461461
```
462462

463463
\newpage
464464

465-
```{r count-loglik, message=FALSE}
466-
count_loglik <- read_csv('data/processed/count-loglik.csv')
467-
kable(count_loglik,
468-
caption = 'Performance of count models on the test set in descending order. Posterior means are provided with standard deviations in parentheses.',
465+
```{r ba-loglik, message=FALSE}
466+
burn_area_loglik <- read_csv('data/processed/burn-area-loglik.csv')
467+
kable(burn_area_loglik,
468+
caption = 'Performance of burn area models on the test set in descending order. Posterior means are provided with standard deviations in parentheses.',
469469
longtable = TRUE) %>%
470470
kable_styling(latex_options = 'striped')
471471
```

0 commit comments

Comments
 (0)