Top "Nse" questions

This tag covers questions about non-standard evaluation, which deals with the creation and manipulation of unevaluated expressions.

dplyr: select columns by position in NSE

I am trying to create a function that will select columns in a DF based on their position. I will …

r select dplyr nse
Looping over variables in ggplot

I want to use ggplot to loop over several columns to create multiple plots, but using the placeholder in the …

r for-loop ggplot2 tidyeval nse
How to dplyr rename a column, by column index?

The following code renames first column in the data set: require(dplyr) mtcars %>% setNames(c("RenamedColumn", names(.)[2:length(names(.))])) …

r dataframe dplyr rename nse
dplyr: How to use group_by inside a function?

I want to use use the dplyr::group_by function inside another function, but I do not know how to …

r dplyr tidyeval nse
Dplyr function to compute average, n, sd and standard error

I find myself writing this bit of code all the time to produce standard errors for group means ( to then …

r dplyr nse