MCPcopy Create free account
hub / github.com/dask/dask / read_orc

Method read_orc

dask/dataframe/backends.py:120–134  ·  view source on GitHub ↗

Read ORC files into a DataFrame collection Parameters ---------- path : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.orc.core.read_orc

(path: str | list, **kwargs)

Source from the content-addressed store, hash-verified

118
119 @staticmethod
120 def read_orc(path: str | list, **kwargs):
121 """Read ORC files into a DataFrame collection
122
123 Parameters
124 ----------
125 path : str or list
126 Source path(s).
127 **kwargs :
128 Optional backend kwargs.
129
130 See Also
131 --------
132 dask.dataframe.io.orc.core.read_orc
133 """
134 raise NotImplementedError
135
136 @staticmethod
137 def read_csv(urlpath: str | list, **kwargs):

Callers 7

test_orc_with_backendFunction · 0.80
test_orc_singleFunction · 0.80
test_orc_multipleFunction · 0.80
test_orc_roundtripFunction · 0.80
test_orc_namesFunction · 0.80

Calls

no outgoing calls

Tested by 7

test_orc_with_backendFunction · 0.64
test_orc_singleFunction · 0.64
test_orc_multipleFunction · 0.64
test_orc_roundtripFunction · 0.64
test_orc_namesFunction · 0.64