(x, method='nearest')
| 468 | return writers[output_format](output_dir) |
| 469 | |
| 470 | def interpolate_nans(x, method='nearest'): |
| 471 | if method == "ignore": |
| 472 | return x |
| 473 | if x.notnull().sum() > 1: |
| 474 | return x.interpolate(method=method).ffill().bfill() |
| 475 | else: |
| 476 | return x.ffill().bfill() |
no outgoing calls
searching dependent graphs…