how to find out the max and min date on the basis of property id in pandas code example
Example: how to find out the max and min date on the basis of property id in pandas
df.groupby([key_field]).agg({'time_field': [np.min,np.max]})
df.groupby([key_field]).agg({'time_field': [np.min,np.max]})