ggplot2 के साथ डेटा विज़ुअलाइज़ेशन परिचय
Rick Scavetta
Founder, Scavetta Academy

Function
प्राथमिक:
द्वितीयक:
Guiding principles
कभी न करें:
हमेशा करें:






ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
color = Species)) +
geom_point()

ggplot(iris, aes(color = Sepal.Length,
y = Sepal.Width,
x = Species)) +
geom_point()






ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
col = Species)) +
geom_point()

ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
col = Species)) +
geom_point(position = "jitter",
alpha = 0.5)

ggplot2 के साथ डेटा विज़ुअलाइज़ेशन परिचय