Skip to content

Commit

Permalink
update headers
Browse files Browse the repository at this point in the history
  • Loading branch information
khufkens committed Feb 26, 2024
1 parent 660a0c5 commit 70295eb
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions vignettes/model_evaluation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ We use fLUE predictions used in previous work as a target in a machine learning
- leave-site-out cross validation (summary stats)
- ...

### Regression model

## Results

### Regression model

Scatterplot of the results, observed vs. predicted fLUE.

```{r echo = FALSE, message=FALSE, warning=FALSE}
Expand Down Expand Up @@ -322,8 +322,6 @@ print(p)

### Regression model landsat

## Results

Scatterplot of the results, observed vs. predicted fLUE.

```{r echo = FALSE, message=FALSE, warning=FALSE}
Expand Down Expand Up @@ -379,8 +377,27 @@ p <- ggplot(df) +
print(p)
```

Table of the regression metrics.

```{r echo=FALSE, message=FALSE, warning=FALSE}
df |>
yardstick::metrics(
truth = flue,
estimate = flue_predicted
) |>
rename(
metric = .metric,
value = .estimate
) |>
select(
metric,
value
) |>
mutate(
value = round(value, 3)
) |>
reactable::reactable()
```

#### Landsat Leave-site-out summary stats

Expand Down

0 comments on commit 70295eb

Please sign in to comment.