Skip to content

Commit

Permalink
Update 02_ValidationDataCollection.qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Nowosad authored Sep 1, 2024
1 parent 0e8c9e0 commit 2035eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdv_session/02_ValidationDataCollection.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ ggplot(data=validation,aes(x=observed, y=predicted))+
Again we can use the RMSE to express the mean difference between observed and
predicted AGB.

```{r RMSE}
```{r RMSE2}
RMSE_sample = sqrt(sum((validation$observed-validation$predicted)^2)/nrow(validation))
```

Expand Down

0 comments on commit 2035eae

Please sign in to comment.