Aqui se ponen los textos (interpretaciones o comentarios)
## Esto es codigo de R
library(GGally)
data(iris)
iris
plot(iris[,1:4],col=iris$Species)
ggpairs(iris[,1:4], ggplot2::aes(colour=iris$Species))
Se observa que ā¦.
require(ggplot2)
require(plotly)
g1=ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width,colour=Species))+geom_point()+theme_bw()
g1
g2=ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width,colour=Species))+geom_point()+theme_bw()+geom_smooth(method="lm")
g2
ggplotly(g2)