hi ,
i used resample method with ray modin and ı got error that was TypeError: ‘Resampler’ object is not subscriptable . it works with pandas .
my code is :
team_md.resample(‘3T’)[[‘Value’]].mean()
how can i solve this ?
thank you.
hi ,
i used resample method with ray modin and ı got error that was TypeError: ‘Resampler’ object is not subscriptable . it works with pandas .
my code is :
team_md.resample(‘3T’)[[‘Value’]].mean()
how can i solve this ?
thank you.
i solved it.
team_md=team_md.resample(‘3T’).mean()
team_md=team_md)[[‘Value’]]