Re: [R] nth kludge

2023-03-09 Thread Jan van der Laan
Hi Avi, list, Below an alternative suggestion: func <- function(a, b, c) { list(a, b, c) } 1:3 |> list(x = _) |> with(func(a, x, b)) Not sure if this is more readable than some of the other solutions, e.g. your solution, but you could make a variant of with more specific for this use case

[R] nth kludge

2023-03-08 Thread avi.e.gross
I see many are not thrilled with the concise but unintuitive way it is suggested you use with the new R pipe function. I am wondering if any has created one of a family of functions that might be more intuitive if less general. Some existing pipes simply allowed you to specify where in an argu