See dd.to_json docstring for more information
(self, filename, *args, **kwargs)
| 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, |