I have a list of columns names to use in a loop.
As part of this loop I wish to pass i
to a statistic,
in this instance i
is a character so the following does not work:
quantile(df$i, 0.25)
Although for ggplot2
this function does similar.
aes_string()
What function am I missing here?