Lookup for specifica values
Sun Oct 23 2022 15:55:23 GMT+0000 (UTC)
Saved by
@sarfraz_sheth
#python
df_sets[df_sets['year'] == 1949] # filter a complete data based on specific criteria
df_sets.sort_values('year', ascending=True).head() # find first year in data
df_sets.sort_values('num_parts', ascending=False).head(n=10) # top 10 based on criteria
content_copyCOPY
different type for looking up for values, filter, head, sorts, etc...
Comments