Advertisements
Advertisements
प्रश्न
Which of the following command will display the Minimum value of the Maxtemp Column?
विकल्प
df.loc['Maxtemp'].min( )
df.loc.'Maxtemp' .min( )
df['Maxtemp'].min()
df.[:,'Maxtemp'].min( )
MCQ
Advertisements
उत्तर
df['Maxtemp'].min()
Explanation:
In order to get the column's minimum value, the df['Maxtemp'].min() first projects the Maxtemp column from the data frame.
shaalaa.com
Descriptive Statistics
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
