Which of the following correctly matches a function to its purpose?

data.shape ()
1.displays the number of rows and columns in the data

data ["column"].value_counts ()
2.displays the number of columns

data.info ()
3.displays the count, mean, min, max, standard deviation, and quartiles for all numerical data

data.describe ()
4.displays the type of data in each column

1. data.shape() - displays the number of rows and columns in the data

2. data ["column"].value_counts() - displays the count of unique values in the specified column
3. data.info() - displays the data type of each column, along with the count of non-null values
4. data.describe() - displays the count, mean, min, max, standard deviation, and quartiles for all numerical data