(data)
| 636 | |
| 637 | |
| 638 | def is_xarray_dataarray(data): |
| 639 | if not check_library(data, 'xarray'): |
| 640 | return False |
| 641 | from xarray import DataArray |
| 642 | |
| 643 | return isinstance(data, DataArray) |
| 644 | |
| 645 | |
| 646 | def support_index(data): |
no test coverage detected
searching dependent graphs…