{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Hist" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import hvplot.xarray # noqa\n", "import xarray as xr" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`hist` is often a good way to start looking at data to get a sense of the distribution. Similar methods include [`kde`](kde.ipynb) (also available as `density`)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ds = xr.tutorial.open_dataset('air_temperature').load()\n", "air = ds.air\n", "air1d = air.sel(lon=285.,lat=40.)\n", "air1d" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "air1d.hvplot.hist()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Customize the plot by changing the title and bar color." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "air1d.hvplot.hist(title=\"Air Temperature over time at lat=40,lon285\", color='gray')" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }