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