knitr::opts_chunk$set(echo = FALSE
                      , results = 'asis'
                      , warning = FALSE
                      , message = FALSE)

Required Fields

The following fields are required in input files.

Click here to download an Excel file with this table plus example data. Column names must be match the spelling and symbology exactly as shown.

# Packages
library(readxl)

# Data
fn_req <- "ThermPrefMetric_ReqFields_20230203.xlsx"
path_req <- file.path("files", fn_req)
df_req <- read_excel(path_req, sheet = "RequiredFields")

# Table
cap_req <- "Table 1. Required fields."
#DT not working in fragment, use kable
knitr::kable(df_req, caption = cap_req)

Last updated 2023-02-03



leppott/BCGcalc documentation built on May 17, 2024, 5:55 p.m.