diff options
| author | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-16 14:50:12 +0100 | 
|---|---|---|
| committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-16 14:50:12 +0100 | 
| commit | 80ae27dcc4186f03e17164be74158454651474e7 (patch) | |
| tree | 84bb309154a2ded16494785ae1ce11baed809a1f | |
| parent | 5889cd78376e244f38e6c5acba8ffbc46e18f803 (diff) | |
Read in all data per default
| -rw-r--r-- | R/read_spreadsheet.R | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/R/read_spreadsheet.R b/R/read_spreadsheet.R index a20af6db..7ad09c3e 100644 --- a/R/read_spreadsheet.R +++ b/R/read_spreadsheet.R @@ -37,7 +37,7 @@  #' and moisture normalisation factors in the sheet 'Datasets'?  #' @export  read_spreadsheet <- function(path, valid_datasets = "all", -  parent_only = TRUE, normalize = TRUE) +  parent_only = FALSE, normalize = TRUE)  {    if (!requireNamespace("readxl", quietly = TRUE))      stop("Please install the readxl package to use this function") | 
