8得票3回答
为什么在这个宏定义中需要使用 @ 符号?

在以下的when宏中: (defmacro when (condition &rest body) `(if ,condition (progn ,@body))) Why is there an "at" @ sign?

7得票1回答
只有在提供参数时才进行可选分组的dplyr函数

我需要编写一个dplyr函数来创建自定义的区域图。以下是我的尝试。 area_plot <- function(data, what, by){ by <- ensym(by) what <- ensym(what) data %>% filt...