my_variable <- 10
my_varıable
#> Error in eval(expr, envir, enclos): object 'my_varıable' not found
In the 2nd line ı is used instead of i,
calling a variable not yet created.
library(tidyverse)
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
filter(mpg, cyl == 8)
# filter(diamond, carat > 3)
Tools > Keyboard Shortcuts Help