I am trying to mimic SQL code converting to Python. The SQL is something like this -
SELECT Category, Type, Code, Description, count(*), avg(Days)
FROM File
GROUP BY 1,2,3,4
I got everything else in Python, but not sure how I can do the count(*)?
My python code is
df2 = df1 (['Category','Type','Code','Description'])['Days'].mean().reset_index()
question from:
https://stackoverflow.com/questions/65907186/how-to-do-a-count-in-pandas 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…