the key online (the Rmd on the website) does not match what is in the main branch (and the html looks fine on the website):
shows:
plot_ces <- function(col_name){
ggplot(data = ces, aes(x = , y = Poverty)) +
geom_point()
}
instead of
plot_ces <- function(col_name){
ggplot(data = ces, aes(x = {{col_name}}, y = Poverty)) +
geom_point()
}
the key online (the Rmd on the website) does not match what is in the main branch (and the html looks fine on the website): shows: plot_ces <- function(col_name){ ggplot(data = ces, aes(x = , y = Poverty)) + geom_point() }
instead of plot_ces <- function(col_name){ ggplot(data = ces, aes(x = {{col_name}}, y = Poverty)) + geom_point() }