A data scientist wants to get a quick overview of the central tendency, dispersion, and shape of the distribution of all numerical columns in a pandas DataFrame called `df_numeric`. Which of the following methods is most direct and conventional for this task?
-
A
df_numeric.info()
-
B
df_numeric.describe()
-
C
df_numeric.mean()
-
D
df_numeric.hist()