Knit Error R Markdown

summary(Iris)

ERROR
Error in summary(Iris) : object 'Iris' not found Calls: ... withCallingHandlers -> withVisible -> eval -> eval -> summary
How to resolve this?

Welcome to the community!

Unless you're using some external dataset or package which has a dataset named Iris, there's no in built dataset in R called Iris.

However, there's one called iris, and R is case sensitive. Try with summary(iris).

Hope this helps.

Thankyou. It worked..

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