Consider this example:
a <- data.table(x = 1:30, y = 2:31)
a[, model := "a"]
ex <- data.table::copy(example_quantile)
ex[, model := paste(model, "a")]
Upon changing the model column, the first data.table prints nothing. For ex, however, the whole data.table is printed again.
EDIT: This is no longer true
Same happens with scores objects
ex <- score(example_quantile)
ex[, test := 3]
@Bisaloo do you have any thoughts on this?
Consider this example:
Upon changing the model column, the first data.table prints nothing. For
ex, however, the whole data.table is printed again.EDIT: This is no longer true
Same happens with
scoresobjects@Bisaloo do you have any thoughts on this?