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

Method to_json

dask/dataframe/dask_expr/_collection.py:2395–2399  ·  view source on GitHub ↗

See dd.to_json docstring for more information

(self, filename, *args, **kwargs)

Source from the content-addressed store, hash-verified

2393 return from_dict(data, npartitions, orient, dtype=dtype, columns=columns)
2394
2395 def to_json(self, filename, *args, **kwargs):
2396 """See dd.to_json docstring for more information"""
2397 from dask.dataframe.io import to_json
2398
2399 return to_json(self, filename, *args, **kwargs)
2400
2401 def to_sql(
2402 self,

Calls 1

to_jsonFunction · 0.90