-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
This line fails with current versions of data.table:
travelSurveyTools/R/hts_prep_triprate.R
Line 174 in 1f3ff6b
triprate_dt = triprate_dt[, .(num_trips = sum(!is.na(get(trip_id)))), |
This is related to data.table behavior:
Rdatatable/data.table#3052
AFAICT, it looks like a simple fix:
get(..trip_id) instead of get(trip_id)
This works in a local version of the repo.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working