Replies: 1 comment 1 reply
-
issue is resolved. There was an issue with data |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to do sum aggregate CY = current year sales by date
It says data type is string I tried converting it to int as well, did not work
df_group = df.groupby(df.Reporting_Date, agg=vaex.agg.sum(df.CY))
df_group
Getting below error
AttributeError: type object 'str' has no attribute 'kind'
Any help appreciated
Beta Was this translation helpful? Give feedback.
All reactions