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

Method to_json

dask/dataframe/dask_expr/_collection.py:2401–2405  ·  view source on GitHub ↗

See dd.to_json docstring for more information

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

Source from the content-addressed store, hash-verified

2399 return from_dict(data, npartitions, orient, dtype=dtype, columns=columns)
2400
2401 def to_json(self, filename, *args, **kwargs):
2402 """See dd.to_json docstring for more information"""
2403 from dask.dataframe.io import to_json
2404
2405 return to_json(self, filename, *args, **kwargs)
2406
2407 def to_sql(
2408 self,

Calls 1

to_jsonFunction · 0.90