For example,
- I have a variable (column name) = "mode" in a sample data frame.
- And there is a built-in function with R with its name "mode"
How do I tell my script to get values from the first one (1) and not on second one (2)?
My sample code:
mpg %>%
select("manufacturer", "model", "cty", "hwy") %>%
filter(manufacturer == "volkswagen") %>%
filter(mpg$class == "compact")

