Created
January 17, 2023 19:44
-
-
Save dmi3kno/f44f72d571246b7c09247e8a5699a535 to your computer and use it in GitHub Desktop.
Function factory with changeable argument name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(magrittr) | |
| logit <- function(u) log(u)-log(1-u) | |
| raise_to_pow <- function(fun, pname_pow=".pow"){ | |
| eval(parse(text=gsub(pattern=".pow", replacement=pname_pow, | |
| "function(u, .pow=1, ...) fun(u,...)^(.pow)"))) | |
| } | |
| powlogit <- logit %>% raise_to_pow(pname_pow="e") | |
| powlogit(0.2,e=2) | |
| #[1] 1.921812 | |
| logit(0.2)^2 | |
| #[1] 1.921812 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the
bquoteis the least transparent solution. The explicit call construction withdo.callhas a slight benchmark advantage, so I reused it and expanded for readability (at negligible cost).Now I can separate the programming from meta-programming and refactor my functions easily. Thank you very much @moodymudskipper for this!