79450841

Date: 2025-02-19 09:48:22
Score: 1
Natty:
Report link

I'm not sure if this is what you are looking for but you can create a custom agg function like:

pd.NamedAgg(column="Model Year", aggfunc=lambda x: np.count(x))

or

pd.NamedAgg(column="Model Year", aggfunc=lambda x: len(x))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: IlBuonTini