I am relatively new to R, and trying to use ddply & summarise from the plyr package. This post almost, but not quite, answers my question. I could use some additional ex
Just use as.quoted function. Example below
as.quoted
simple_ddply <- function(dataset_name, variable_name){ data <- ddply(dataset_name,as.quoted(variable_name), *remaining input)**