R no encuentra el objetivo

Hola, soy nueva en R y tengo el siguiente problema:
Ingrese el packete "iris" y no me reconoce una variante:
?iris
#cargar dataset de R iris
Iris1<-data.frame(iris)
Iris1

#seleccionar solo las columnas 3,4 y 5.
subiris1<-data.frame(Iris1$Petal.Length, Iris1$Petal.Width, Iris1$Species)
subiris1
subiris1$Iris1.Petal.Width<- as.numeric(subiris1$Iris1.Petal.Width)
subiris1$Iris1.Petal.Length<- as.numeric(subiris1$Iris1.Petal.Length)

#correlación entre el largo y el peso del pétalo: gráfico de dispersión
graf<-ggplot(subiris1, aes(x=Length, y=Width)) + geom_point(size=2, shape=23) + geom_smooth(method="loess", se=TRUE, fullrange=FALSE, level=0.95)
graf

Por favor!!

Solamente

data(iris)

Y tambien mtcar y otros datasets incluyido en R {base}

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.