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
In the output of the pareto_frontier() function, the values in the monetary_cost column have long tail decimal places. Perhaps these values should be rounded to the second decimal place?
Internally, I recommend doing everything in integers, to avoid floating point roundoff. I ran into this in Boston (I think) where there is one journey that is $8.20, but floor(8.2 * 100) = 819. Better to just convert everything to cents/whatever the indivisible currency units locally are.
In the output of the
pareto_frontier()
function, the values in themonetary_cost
column have long tail decimal places. Perhaps these values should be rounded to the second decimal place?reprex
The text was updated successfully, but these errors were encountered: