89.1k views
4 votes
What does the function shape do?

1) Outputs the number of rows and columns in a dataset
2) Outputs the data type stored in the variable
3) Outputs the first four rows of the dataset
4) Outputs the name of the original dataset from which the subset originated.

User EnKrypt
by
7.6k points

1 Answer

3 votes

Final answer:

The function shape in programming is used to determine the number of rows and columns in a dataset or array.

Step-by-step explanation:

What does the function shape do?

The function shape in programming is used to determine the number of rows and columns in a dataset or array. It returns a tuple that contains the dimensions of the dataset. For example, if a dataset has 5 rows and 3 columns, the shape function would return (5, 3).

In the context of the given options, the correct answer would be:

  1. Outputs the number of rows and columns in a dataset

User M P
by
8.0k points