+1 vote
in Structured Data Classification by
What does the command iris['species'].value_counts() return?

Download the dataset from https://gist.githubusercontent.com/curran/a08a1080b88344b0c8a7/raw/d546eaee765268bf2f487608c537c05e22e4b221/iris.csv to answer the question.

Select the correct answer from below options:

a) The total count of elements in the iris['species'] column

b) The count with unique values in the iris['species'] column

c) The number of columns in the dataset

d) The number of rows in the dataset

1 Answer

0 votes
by

Correct answer of above question is : b) The count with unique values in the iris['species'] column

...