hvplot icon indicating copy to clipboard operation
hvplot copied to clipboard

Explorer: support exploring the variables of an xarray Dataset

Open maximlt opened this issue 2 years ago • 0 comments

Reviewing https://github.com/holoviz/hvplot/pull/1256 made me realize that the explorer doesn't support selecting the variables of an xarray Dataset, it seems to be picking up the first variable available (air in the example below).

import hvplot.xarray
import xarray as xr

ds_at = xr.tutorial.open_dataset('air_temperature')
ds_at['air2'] = ds_at.air
ds_at.hvplot.explorer()

image

maximlt avatar Feb 02 '24 09:02 maximlt