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
There should be places we can really improve performance, but ideally we would maintain the flexibility for countries and time, while also speeding things up. Some steps might be:
remove use of unique
remove use of Query looping functions like @filter
run Profiler for type stability
For example, it may be faster to move away from DataFrames and Query to use lower-level indexing methods like replacing
There should be places we can really improve performance, but ideally we would maintain the flexibility for countries and time, while also speeding things up. Some steps might be:
unique
@filter
For example, it may be faster to move away from DataFrames and Query to use lower-level indexing methods like replacing
with something like (pseudocode)
and then use those to pare down to the
subset
, or are those also slow?The text was updated successfully, but these errors were encountered: