1. What does .values[:,0] represent in the following code :
print(Using Column Data Type::" )
print(df.select_dtypes(include=['float64']).values[:,0] )
2. What does [0,24,51] represent :
print(Excluding Specific Row indices::" )
print(df.drop([0,24,51], axis=0).head())
Values representing a numpy array with values of pandas data frame.
[:,0] is the first column of the numpy Array.