ourMELONS/R/globals.R

12 lines
357 B
R
Raw Normal View History

2021-02-01 09:04:30 +01:00
COUNTS <- array(0, dim=c(100, 100, 100))
SUMCOUNTS <- array(0, dim=c(100, 100))
2020-12-11 12:29:55 +01:00
PARTITION <- vector()
POP_LOGML <- vector()
LOGDIFF <- vector()
2021-01-15 10:08:15 +01:00
# If handling globas break, try other ideas from https://stackoverflow.com/a/65252740/1169233
2020-12-11 12:29:55 +01:00
#' @import utils
2020-11-19 10:46:37 +01:00
utils::globalVariables(
c("PARTITION", "COUNTS", "SUMCOUNTS", "LOGDIFF", "POP_LOGML", "GAMMA_LN")
)