Conversation
…ate the summary data frame
|
Unfortunately, I don't have a lot of time to review all of this right now, as it's a pretty big / pervasive change, but I see how it would impact #245. From what perspective does this improve efficiency? Does it just reduce the amount of R objects floating around, being passed to functions? Or does it impact app run time processes? |
A few things:
It all just works more together now, removing several duplications. Note that we could also convert the timeline_data to a normal data frame so that it can be created in advance as well (see #245). |
That would be amazing! |
Adjusted, done :) |
aclark02-arcus
left a comment
There was a problem hiding this comment.
Hi @LDSamson, this looks good to me. I didn't test it on our internal data, but I played around with it for a while and couldn't find any issues. I'll merge and if there are any issues, we can address them in a follow-up PR.
Partly addressess #223. With this PR, no
app_tablesobject needs to be created when starting the app anymore. Sinceapp_tableswere created twice (at start up and once when loading each form for the first time), this PR improves efficiency.It would also mean one less object to precalculate when implementing #245, reducing complexity.
@aclark02-arcus do you have time to take a look here? If not please let me know, thanks!