ipydatagrid#
- astropy.table.notebook_backends.ipydatagrid(table, **kwargs)[source]#
Render the table in HTML with
ipydatagridand show it in the Jupyter notebook.This function creates an
ipydatagrid.DataGridobject by converting the inputtableto apandas.DataFrameand passing**kwargsto the constructor. The availableDataGridoptions can be seen in a Jupyter notebook withhelp(ipydatagrid.DataGrid).Note
This function requires optional dependencies
pandasandipydatagrid.- Parameters:
- table
Table Table to render.
- **kwargs
python:dict, optional Keyword arguments accepted by
ipydatagrid.DataGrid.
- table
- Returns:
- dg
object An
ipydatagrid.DataGridinstance representing the given table.
- dg