Construct a Dask DataFrame from a Python Dictionary See Also -------- dask.dataframe.from_dict
(
cls, data, *, npartitions=1, orient="columns", dtype=None, columns=None
)
| 2387 | |
| 2388 | @classmethod |
| 2389 | def from_dict( |
| 2390 | cls, data, *, npartitions=1, orient="columns", dtype=None, columns=None |
| 2391 | ): |
| 2392 | """ |
| 2393 | Construct a Dask DataFrame from a Python Dictionary |
| 2394 | |
| 2395 | See Also |
| 2396 | -------- |
| 2397 | dask.dataframe.from_dict |
| 2398 | """ |
| 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""" |