Order of arguments in read_resource in frictionless-r #705
-
I've noted that the order of the arguments have changed in One of the advantages of the previous ordering is that we could write code with both base ( package |> read_resource("resource-name") With the new order, with magrittr pipes we can still use # still not as pleasant
package %>% read_resource("resource-name", .) but with the base pipe operator I need # not fun
package |> (function(x) read_resource("resource-name", x))() I couldn't find the reasoning behind the change, but wanted to chime in in the discussion for the design of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Excellent question, I've just opened discussions at frictionless-r. Can you re-post it at https://github.com/frictionlessdata/frictionless-r/discussions and close it here? |
Beta Was this translation helpful? Give feedback.
Excellent question, I've just opened discussions at frictionless-r. Can you re-post it at https://github.com/frictionlessdata/frictionless-r/discussions and close it here?