Exemplo n.º 1
0
def html_representation(dataset: xr.Dataset = Depends(get_dataset)):
    """Returns a HTML representation of the dataset."""

    with xr.set_options(display_style='html'):
        return HTMLResponse(dataset._repr_html_())