Created
November 8, 2017 06:05
-
-
Save Oindrila-Sen/91523ccc559e1393ae78910169c999de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Check the Structure od Dataset Iris | |
str(iris) | |
#Check the Levels of the Factor Column Species | |
levels(iris$Species) | |
#Check number of records for each levels | |
table(iris$Species) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment