diff --git a/hvplot/util.py b/hvplot/util.py index 77bd6075d..9eeb4187c 100644 --- a/hvplot/util.py +++ b/hvplot/util.py @@ -496,7 +496,6 @@ def process_xarray( by, groupby, use_dask, - use_xvec, persist, gridded, label, @@ -506,8 +505,6 @@ def process_xarray( ): import xarray as xr - print(type(data)) - if isinstance(data, xr.Dataset): dataset = data else: @@ -531,8 +528,6 @@ def process_xarray( data_vars = list(dataset.data_vars) ignore = (by or []) + (groupby or []) - if use_xvec: - ignore += list(data.xvec.geom_coords) dims = [c for c in dataset.coords if dataset[c].shape != () and c not in ignore][::-1] index_dims = [d for d in dims if d in dataset.indexes]