Construct a Dask DataFrame from a Python Dictionary See Also -------- dask.dataframe.from_dict
(
cls, data, *, npartitions=1, orient="columns", dtype=None, columns=None
)
| 2381 | |
| 2382 | @classmethod |
| 2383 | def from_dict( |
| 2384 | cls, data, *, npartitions=1, orient="columns", dtype=None, columns=None |
| 2385 | ): |
| 2386 | """ |
| 2387 | Construct a Dask DataFrame from a Python Dictionary |
| 2388 | |
| 2389 | See Also |
| 2390 | -------- |
| 2391 | dask.dataframe.from_dict |
| 2392 | """ |
| 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""" |