pgbovine
pgbovine
to trigger it, try a summarise with across (not sure if this particular one makes sense, but it does trigger it): ```r library(dplyr) mtcars %>% group_by(cyl) %>% summarise(across(disp)) ``` it...
Add in the starting position (i.e., # of characters offset from the start of the code string) and the actual contents of each 'arg' argument to the code so that...
since mario works on different types of tabular data (e.g., data frames, tibbles, data.table, etc.), it would be good to eventually label each one with its R type. also, each...
it would be good to eventually handle multi-line R scripts so that mario isn't restricted to analyzing a single pipeline expression
This will make the tool a true end-to-end experience that can run arbitrary user code and at least print out what it would've printed out when running on the user's...
[make sure that it doesn't pollute the JSON trace ... and ideally also capture that in the JSON trace] related to: https://github.com/seankross/mario/issues/25