def interact_with(df, ndims=3, **kwargs):
"""
Interactively view a DataFrame.
Parameters
----------
df : DataFrame
The DataFrame to interact with
ndims : int, optional
The number of dimensions wished to encode at start (the number of rows
with encoding/data/function/data_type).
Notes
-----
In the Jupyter notebook, display a widget to allow you to selectively plot
columns to plot/encode/etc.
Use a smaller value if ndims if less dimensions and controls are desired.
"""
return Interact(df, ndims=ndims, **kwargs)
评论列表
文章目录