None of the above. The correct function and purpose match is:
data.shape()
displays the number of rows and columns in the data
Which of the following correctly matches a function to its purpose?(1 point)
Responses
data.describe()
displays the type of data in each column
data.describe() displays the type of data in each column
data["column"].value_counts()
displays the number of columns
data["column"].value_counts() displays the number of columns
data.info()
displays the count, mean, min, max, standard deviation, and quartiles for all numerical data
data.info() displays the count, mean, min, max, standard deviation, and quartiles for all numerical data
data.shape()
displays the number of rows and columns in the data
1 answer