I have a function that calls the lm_robust function from the estimatr package in R. I want to be able to specify a variable on which to cluster standard errors, but the lm_robust function only allows bare (unquoted) variable names in lm_robust's cluster option while my function needs the input to be a quoted variable name.
How do I take a variable that is input into a function (such as "cl") and turn it into a unquoted variable (such as cl)?