I have a penguin_size dataset in Python. I have found the minimum value from the 'culmen_length_mm' column. However, I am not sure how to determine which row this minimum value belongs to. Can you help me with this?
import numpy as np
data_set=["culmen_lenght_mm"]
min_index=np.argmin(data_set)
print(min_index)
The result is always returning as 0