sepals_and_petals.Rd
This function can plot any of the numeric columns in the iris dataset against each other.
sepals_and_petals(x, y)
x | value in |
---|---|
y | value in |
ggplot object
sepals_and_petals("Sepal.Length", "Petal.Length")# Code sepals_and_petals#> function(x, y) { #> ggplot(datasets::iris, aes_string(x = x, y = y, color = "Species")) + #> geom_point() #> } #> <environment: namespace:SepalsAndPetals>