ourMELONS/R/globals.R

12 lines
388 B
R
Raw Permalink Normal View History

COUNTS <- array(0, dim = c(100, 100, 100))
SUMCOUNTS <- array(0, dim = c(100, 100))
2021-11-10 14:55:11 +01:00
PARTITION <- array(1, dim = 100)
POP_LOGML <- array(1, dim = 100)
LOGDIFF <- array(1, dim = c(100, 100))
2022-02-08 14:01:02 +01:00
# If handling globas break, try other ideas from
# https://stackoverflow.com/a/65252740/1169233
2021-01-15 10:08:15 +01:00
2020-11-19 10:46:37 +01:00
utils::globalVariables(
c("PARTITION", "COUNTS", "SUMCOUNTS", "LOGDIFF", "POP_LOGML", "GAMMA_LN")
2021-06-29 10:41:23 +02:00
)