Fixed bug with glossar argument
This commit is contained in:
parent
ec45877229
commit
c41ba718e9
@ -27,7 +27,7 @@ create_eventlogs <- function(data, xmlpath = NULL, case_cutoff = 20,
|
||||
data$date <- as.POSIXct(data$date)
|
||||
}
|
||||
|
||||
if (!glossar & is.null(xmlpath)) {
|
||||
if (glossar & is.null(xmlpath)) {
|
||||
stop("xmlpath is not specified and glossar = TRUE. Please enter the path to folder where XML definitions of items live.")
|
||||
}
|
||||
|
||||
@ -126,7 +126,7 @@ create_eventlogs <- function(data, xmlpath = NULL, case_cutoff = 20,
|
||||
dat7$glossar <- NULL
|
||||
}
|
||||
|
||||
if (save) save(dat, dat1, dat2, dat3, dat4, dat5, dat6, dat7, file = "../data/tmp_intermediate-df.RData")
|
||||
if (save) save(dat, dat1, dat2, dat3, dat4, dat5, dat7, file = "../data/tmp_intermediate-df.RData")
|
||||
|
||||
dat7
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user