You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing a lot of calculations, when it comes to groupby, Aggregation encountered a problem。
in the dataframe,map is not nil,but row is 0,
“
func (gps Groups) Aggregation(typs []AggregationType, colnames []string) DataFrame {
if gps.groups == nil {
return DataFrame{Err: fmt.Errorf("Aggregation: input is nil")}
}
”
Just judging whether “nil” is insufficient
Do you have any good suggestions or Could you fix this problem
The text was updated successfully, but these errors were encountered:
huotianyu
changed the title
Group by
After Groupby,executing Aggregation error
Jul 23, 2023
After doing a lot of calculations, when it comes to groupby, Aggregation encountered a problem。
in the dataframe,map is not nil,but row is 0,
“
func (gps Groups) Aggregation(typs []AggregationType, colnames []string) DataFrame {
if gps.groups == nil {
return DataFrame{Err: fmt.Errorf("Aggregation: input is nil")}
}
”
Just judging whether “nil” is insufficient
Do you have any good suggestions or Could you fix this problem
The text was updated successfully, but these errors were encountered: