Closed
Description
What is your issue?
The docs here state that it is possible to use polynomial
interpolation when resampling.
If you try this though:
data_per_minute = ds.resample(
valid_time="1min"
).interpolate("polynomial")
You get the following:
ValueError: order is required when method=polynomial
The docs here state that you need to pass in order, how is this possible?
If you then try:
data_per_minute = ds.resample(
valid_time="1min"
).interpolate(kind="polynomial", order=3)
You get:
TypeError: Resample.interpolate() got an unexpected keyword argument 'order'
How can the order be specified? Thank you in advance.