ipydatagrid#

astropy.table.notebook_backends.ipydatagrid(table, **kwargs)[source]#

Render the table in HTML with ipydatagrid and show it in the Jupyter notebook.

This function creates an ipydatagrid.DataGrid object by converting the input table to a pandas.DataFrame and passing **kwargs to the constructor. The available DataGrid options can be seen in a Jupyter notebook with help(ipydatagrid.DataGrid).

Note

This function requires optional dependencies pandas and ipydatagrid.

Parameters:
tableTable

Table to render.

**kwargspython:dict, optional

Keyword arguments accepted by ipydatagrid.DataGrid.

Returns:
dgobject

An ipydatagrid.DataGrid instance representing the given table.