You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using set_measurements() occasionally triggers an error, and it seems to happen when run multiple times:
Apparently, the error happens when lots of memory is used up within R Studio. According to this issue, it also has something to do with the {utils} package eventually timing out, so it might not be fixable by fixing the tibble package which is unintentionally triggering it.
It's a strange bug, though, because it can trigger different error messages. They all finish with the same final line of reached elapsed time limit. Here I've run the same query twice in a row but received different error messages.
I think it has something to do with group_split() and nest() within set_measurements() (and here is evidence)
The text was updated successfully, but these errors were encountered:
Using
set_measurements()
occasionally triggers an error, and it seems to happen when run multiple times:Apparently, the error happens when lots of memory is used up within R Studio. According to this issue, it also has something to do with the {utils} package eventually timing out, so it might not be fixable by fixing the tibble package which is unintentionally triggering it.
It's a strange bug, though, because it can trigger different error messages. They all finish with the same final line of
reached elapsed time limit
. Here I've run the same query twice in a row but received different error messages.I think it has something to do with
group_split()
andnest()
withinset_measurements()
(and here is evidence)The text was updated successfully, but these errors were encountered: