canmod / macpan2

Rebuilding https://github.com/mac-theobio/McMasterPandemic/
https://canmod.github.io/macpan2/
GNU General Public License v3.0
2 stars 0 forks source link

argument names to engine functions are silently ignored #198

Open jfree-man opened 5 months ago

jfree-man commented 5 months ago
library(macpan2)
A = matrix(1:12, 4, 3)
# get the same results, even though `y` is not a named argument for col_sums
engine_eval(~ col_sums(A), A = A)
engine_eval(~ col_sums(y = A), A = A)