Login
Remember
Register
Ask a Question
Identify the command used to view the dataset SIZE, and what is the value returned?
+1
vote
asked
Jan 5, 2022
in
Structured Data Classification
by
sharadyadav1986
Identify the command used to view the dataset SIZE, and what is the value returned?
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) iris.size,(150,5)
b) iris.size(),(150,6)
c) iris.shape,(150,6)
d) iris.shape(),(150,5)
dataset-size
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 5, 2022
by
sharadyadav1986
Correct answer of above question is : d) iris.shape(),(150,5)
iris.shape() is the command used to view the dataset SIZE and (150,5) value returned
...