knitr::opts_chunk$set(echo = FALSE)
library(dplyr)
library(dhcurve)
library(knitr)
Uitvoer <- NULL

  for (Boomsoort in unique(Dataset$BMS)) {
    DataSoort <- Dataset %>%
      filter(BMS == Boomsoort)
    for (Domein in unique(DataSoort$DOMEIN_ID)) {
      DataModel <- DataSoort %>%
        filter(DOMEIN_ID == Domein)
      Uitvoer <- c(Uitvoer, knit_child("dhcurve.Rmd"))
    }
  }
cat(Uitvoer, sep = "\n")


inbo/dhcurve documentation built on April 6, 2023, 5:17 a.m.