MCPcopy Index your code
hub / github.com/dask/dask / VarColumns

Class VarColumns

dask/dataframe/dask_expr/_expr.py:1908–1917  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1906
1907
1908class VarColumns(Elemwise):
1909 _parameters = ["frame", "skipna", "ddof", "numeric_only"]
1910 _defaults = {"skipna": True, "ddof": 1, "numeric_only": False}
1911 _keyword_only = ["skipna", "ddof", "numeric_only"]
1912 operation = M.var
1913 _is_length_preserving = True
1914
1915 @functools.cached_property
1916 def _kwargs(self) -> dict:
1917 return {"axis": 1, **super()._kwargs}
1918
1919
1920class NUniqueColumns(Elemwise):

Callers 1

varMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…