{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "

Tutorial 2. Plotting

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When trying to make sense of data, there are many representations to choose from, including data tables, textual summaries and so on. We'll mostly focus on plotting data to get an intuitive visual representation, using a simple but powerful plotting API.\n", "\n", "If you have tried to visualize a `pandas.DataFrame` before, then you have likely encountered the [Pandas .plot() API](https://pandas.pydata.org/pandas-docs/stable/user_guide/visualization.html). These plotting commands use [Matplotlib](http://matplotlib.org) to render static PNGs or SVGs in a Jupyter notebook using the `inline` backend, or interactive figures via `%matplotlib widget`, with a command that can be as simple as `df.plot()` for a DataFrame with one or two columns. \n", "\n", "The Pandas .plot() API has emerged as a de-facto standard for high-level plotting APIs in Python, and is now supported by many different libraries that use various underlying plotting engines to provide additional power and flexibility. Learning this API allows you to access capabilities provided by a wide variety of underlying tools, with relatively little additional effort. The libraries currently supporting this API include:\n", "\n", "- [Pandas](https://pandas.pydata.org/pandas-docs/stable/user_guide/visualization.html) -- Matplotlib-based API included with Pandas. Static or interactive output in Jupyter notebooks.\n", "- [xarray](https://xarray.pydata.org/en/stable/plotting.html) -- Matplotlib-based API included with xarray, based on pandas .plot API. Static or interactive output in Jupyter notebooks.\n", "- [hvPlot](https://hvplot.pyviz.org) -- Bokeh/Matplotlib/Plotly-based HoloViews plots for Pandas, GeoPandas, xarray, Dask, Intake, and Streamz data.\n", "- [Pandas Bokeh](https://github.com/PatrikHlobil/Pandas-Bokeh) -- Bokeh-based interactive plots, for Pandas, GeoPandas, and PySpark data.\n", "- [Cufflinks](https://github.com/santosjorge/cufflinks) -- Plotly-based interactive plots for Pandas data.\n", "- [Plotly Express](https://plotly.com/python/pandas-backend) -- Plotly-Express-based interactive plots for Pandas data; only partial support for the .plot API keywords.\n", "- [PdVega](https://altair-viz.github.io/pdvega) -- Vega-lite-based, JSON-encoded interactive plots for Pandas data.\n", "\n", "In this notebook we'll explore what is possible with the default `.plot` API and demonstrate the additional capabilities provided by `.hvplot`, which include seamless interactivity in notebooks and deployed dashboards, server-side rendering of even the largest datasets, automatic small multiples and widget selectors for exploring complex data, and easy composition and linking of plots after they are generated. \n", "\n", "To show these features, we'll use a tabular dataset of earthquakes and other seismological events queried \n", "from the [USGS Earthquake Catalog](https://earthquake.usgs.gov/earthquakes/search) using its \n", "[API](https://github.com/pyviz/holoviz/wiki/Creating-the-USGS-Earthquake-dataset). Of course, this particular dataset is just an example; the same approach can be used with just about any tabular dataset, and similar approaches can be used with [gridded (multidimensional array) datasets](https://hvplot.holoviz.org/user_guide/Gridded_Data.html)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Read in the data\n", "\n", "Here we will focus on Pandas, but a similar approach will work for any supported DataFrame type, including Dask for distributed computing or RAPIDS cuDF for GPU computing. This dataset is relatively large (2.1 million rows), but should still fit into memory on any recent machine, and thus won't need special out-of-core or distributed approaches like Dask provides." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import pathlib\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%time\n", "df = pd.read_parquet(pathlib.Path('../data/earthquakes-projected.parq'))\n", "df = df.set_index(df.time)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(df.shape)\n", "df.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To compare HoloViz approaches with other approaches, we'll also construct a subsample of the dataset that's tractable with any plotting or analysis tool, but has only 1% of the data:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "small_df = df.sample(frac=.01)\n", "print(small_df.shape)\n", "small_df.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll switch back and forth between `small_df` and `df` depending on whether the technique we are showing works well only for small datasets, or whether it can be used for any dataset." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using Pandas `.plot()`\n", "\n", "The first thing that we'd like to do with this data is visualize the locations of every earthquake. So we would like to make a scatter or points plot where _x_ is longitude and _y_ is latitude. \n", "\n", "We can do that for the smaller dataframe using the `pandas.plot` API and Matplotlib:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "small_df.plot.scatter(x='longitude', y='latitude');" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Exercise: \n", "Try changing `inline` to `widget` and see what interactivity is available from Matplotlib. In some cases you may have to reload the page and restart this notebook to get it to display properly." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using `.hvplot`\n", "\n", "As you can see above, the Pandas API gives you a usable plot very easily, where you can start to see the structure of the edges of the tectonic plates, which in many cases correspond with the visual edges of continents (e.g. the westward side of Africa, in the center). You can make a very similar plot with the same arguments using hvplot, after importing `hvplot.pandas` to install hvPlot support into Pandas:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import hvplot.pandas # noqa: adds hvplot method to pandas objects" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "small_df.hvplot.scatter(x='longitude', y='latitude')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here unlike in the Pandas `.plot()` the displayed plot is a **Bokeh** plot that has a default hover action on the datapoints to show the location values, and you can always pan and zoom to focus on any particular region of the data of interest. Zoom and pan also work if you use the `widget` Matplotlib backend.\n", "\n", "You might have noticed that many of the dots in the scatter that we've just created lie on top of one another. This is called [\"overplotting\"](https://datashader.org/user_guide/Plotting_Pitfalls.html) and can be avoided in a variety of ways, such as by making the dots slightly transparent, or binning the data. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Exercise\n", "\n", "Try changing the alpha (try .1) on the plot above to see the effect of this approach\n", "
(Solution)
\n", " \n", "```python\n", "small_df.hvplot.scatter(x='longitude', y='latitude', alpha=0.1)\n", "```\n", "\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Try creating a `hexbin` plot.\n", "
(Solution)
\n", "\n", "```python\n", "small_df.hvplot.hexbin(x='longitude', y='latitude')\n", "```\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Getting help with hvplot options\n", "\n", "You may be wondering how you could have found out about the `alpha` keyword option in the first exercise or how you can learn about all the options that are available with `hvplot`. For this purpose, you can use tab-completion in the Jupyter notebook or the `hvplot.help` function which are documented in the [user guide](https://hvplot.holoviz.org/user_guide/Customization.html).\n", "\n", "For tab completion, you can press tab after the opening parenthesis in a `obj.hvplot.(` call. For instance, you can try pressing tab after the partial expression `small_df.hvplot.scatter(`.\n", "\n", "Alternatively, you can call `hvplot.help()` to see a documentation pane pop up in the notebook. Try uncommenting the following line and executing it:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# hvplot.help('scatter')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You will see there are a lot of options! You can control which section of the documentation you view with the `generic`, `docstring` and `style` boolean switches also documented in the [user guide](https://hvplot.holoviz.org/user_guide/Customization.html). If you run the following cell, you will see that `alpha` is listed in the 'Style options'." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# hvplot.help('scatter', style=True, generic=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "These style options refer to options that are part of the Bokeh API. This means that the `alpha` keyword is passed directly to Bokeh just like all the other style options. As these are Bokeh-level options, you can find out more by using the search functionality in the [Bokeh docs](https://docs.bokeh.org/en/latest/)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Datashader\n", "\n", "As you saw above, there are often arbitrary choices that you are faced with making even before you understand the properties of the dataset, such as selecting an alpha value or a bin size for aggregations. Making such assumptions can accidentally bias you towards certain aspects of the data, and of course having to throw away 99% of the data can cover up patterns you might have otherwise seen. For an initial exploration of a new dataset, it's much safer if you can just ***see*** the data, before you impose any assumptions about its form or structure, and without having to subsample it.\n", "\n", "To avoid some of the problems of traditional scatter/point plots we can use hvPlot's [Datashader](datashader.org) support. Datashader aggregates data into each pixel without any arbitrary parameter settings, making your data visible immediately, before you know what to expect of it. In `hvplot` we can activate this capability by setting `rasterize=True` to invoke Datashader before rendering and `cnorm='eq_hist'` ([\"histogram equalization\"](https://datashader.org/user_guide/Plotting_Pitfalls.html)) to specify that the colormapping should adapt to whatever distribution the data has:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "small_df.hvplot.scatter(x='longitude', y='latitude', rasterize=True, cnorm='eq_hist')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can already see a lot more detail, but remember that we are still only plotting 1% of the data (21k earthquakes). With Datashader, we can quickly and easily plot all of the full, original dataset of 2.1 million earthquakes:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "df.hvplot.scatter(x='longitude', y='latitude', rasterize=True, cnorm='eq_hist', dynspread=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here you can see all of the rich detail in the full set of millions of earthquake event locations. If you have a live Python process running, you can zoom in and see additional detail at each zoom level, without tuning any parameters or making any assumptions about the form or structure of the data. If you prefer, you can specify colormapping `cnorm='log'` or the default `cnorm='linear'`, which are easier to interpret, but starting with `cnorm='eq_hist'` is usually a good idea so that you can see the shape of the data before committing to an easier-to-interpret but potentially data-obscuring colormap. You can learn more about Datashader at [datashader.org](https://datashader.org) or the [Datashader page on holoviews.org](https://holoviews.org/user_guide/Large_Data.html). For now, the most important thing to know about it is that Datashader lets us work with arbitrarily large datasets in a web browser conveniently.\n", "\n", "Here we used `.hvplot()` on a Pandas dataframe, but (unlike other `.plot` libraries), the same commands will work on many other libraries after the appropriate import (`import hvplot.xarray`, `import hvplot.dask`, etc.): \n", " - Pandas : DataFrame, Series (columnar/tabular data)\n", " - xarray : Dataset, DataArray (labelled multidimensional arrays)\n", " - Dask : DataFrame, Series (distributed/out of core arrays and columnar data)\n", " - Streamz : DataFrame(s), Series(s) (streaming columnar data)\n", " - Intake : DataSource (data catalogues)\n", " - GeoPandas : GeoDataFrame (geometry data)\n", " - NetworkX : Graph (network graphs)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Exercise\n", "\n", "\n", "Select a subset of the data, e.g. only magitudes >5 and plot them with a different colormap (valid `cmap` values include 'viridis_r', 'Reds' and 'magma_r'):\n", "
(Solution)
\n", "\n", "```python\n", "df[df.mag>5].hvplot.scatter(x='longitude', y='latitude', rasterize=True, cnorm='eq_hist', cmap='Reds')\n", "```\n", " \n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Statistical Plots\n", "\n", "Let's dive into some of the other capabilities of `.plot()` and `.hvplot()`, starting with the frequency of different magnitude earthquakes.\n", "\n", "| Magnitude | Earthquake Effect | Estimated Number Each Year |\n", "|---------------|-------------------|----------------------------|\n", "| 2.5 or less | Usually not felt, but can be recorded by seismograph. |900,000|\n", "| 2.5 to 5.4 | Often felt, but only causes minor damage. |30,000 |\n", "| 5.5 to 6.0 | Slight damage to buildings and other structures. |500 |\n", "| 6.1 to 6.9 | May cause a lot of damage in very populated areas. | 100 |\n", "| 7.0 to 7.9 | Major earthquake. Serious damage. | 20 |\n", "| 8.0 or greater| Great earthquake. Can totally destroy communities near the epicenter. | One every 5 to 10 years |\n", "\n", "As a first pass, we'll use a histogram first with `.plot.hist`, then with `.hvplot.hist`. Before plotting we can clean the data by setting any magnitudes that are less than 0 to NaN." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cleaned_df = df.copy()\n", "cleaned_df['mag'] = df.mag.where(df.mag > 0)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cleaned_df.plot.hist(y='mag', bins=50);" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "df.hvplot.hist(y='mag', bin_range=(0, 10), bins=50)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Exercise\n", "\n", "Create a kernel density estimate (kde) plot of magnitude for `cleaned_df`:\n", "
(Solution)
\n", "\n", "```python\n", "cleaned_df.hvplot.kde(y='mag')\n", "```\n", "\n", "
" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Categorical variables\n", "\n", "Next we'll categorize the earthquakes based on depth. You can read about all the different variables available in this dataset [here](https://earthquake.usgs.gov/data/comcat/data-eventterms.php). According to the [USGS page on earthquake depths](https://www.usgs.gov/natural-hazards/earthquake-hazards/science/determining-depth-earthquake?qt-science_center_objects=0#qt-science_center_objects), typical depth categories are:\n", "\n", "| Depth class | Depth | \n", "|---------------|-------------|\n", "| shallow | 0 - 70 km| \n", "| intermediate | 70 - 300 km| \n", "| deep | 300 - 700 km| \n", "\n", "First we'll use `pd.cut` to split the small_dataset into depth categories." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "depth_bins = [-np.inf, 70, 300, np.inf]\n", "depth_names = ['Shallow', 'Intermediate', 'Deep']\n", "depth_class_column = pd.cut(cleaned_df['depth'], depth_bins, labels=depth_names)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cleaned_df.insert(1, 'depth_class', depth_class_column)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can now use this new categorical variable to group our data. First we will overlay all our groups on the same plot using the `by` option:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cleaned_df.hvplot.hist(y='mag', by='depth_class', alpha=0.6)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**NOTE:** Click on the legend to turn off certain categories and see what is behind them." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Exercise\n", "\n", "Add `subplots=True` and `width=300` to see the different classes side-by-side instead of overlaid. The axes will be linked, so try zooming." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Grouping\n", "What if you want a single plot, but want to see each class separately? You can use the `groupby` option to get a widget for toggling between classes, here in a bivariate plot (using a subset of the data as bivariate plots can be expensive to compute):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cleaned_small_df = cleaned_df.sample(frac=.01)\n", "cleaned_small_df.hvplot.bivariate(x='mag', y='depth', groupby='depth_class')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In addition to classifying by depth, we can classify by magnitude.\n", "\n", "| Magnitude Class| Magnitude | \n", "|----------------|-----------|\n", "| Great | 8 or more | \n", "| Major | 7 - 7.9 | \n", "| Strong | 6 - 6.9 |\n", "| Moderate | 5 - 5.9 |\n", "| Light | 4 - 4.9 |\n", "| Minor | 3 -3.9 |" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "classified_df = df[df.mag >= 3].copy()\n", "\n", "depth_class = pd.cut(classified_df.depth, depth_bins, labels=depth_names)\n", "\n", "classified_df['depth_class'] = depth_class\n", "\n", "mag_bins = [2.9, 3.9, 4.9, 5.9, 6.9, 7.9, 10]\n", "mag_names = ['Minor', 'Light', 'Moderate', 'Strong', 'Major', 'Great']\n", "mag_class = pd.cut(classified_df.mag, mag_bins, labels=mag_names)\n", "classified_df['mag_class'] = mag_class\n", "\n", "categorical_df = classified_df.groupby(['mag_class', 'depth_class']).count()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that we have binned the data into two categories, we can use a logarithmic heatmap to visually represent this data as the count of detected earthquake events in each combination of depth and mag class:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "categorical_df.hvplot.heatmap(x='mag_class', y='depth_class', C='id',\n", " logz=True, clim=(1, np.nan))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here it is clear that the most commonly detected events are light, and typically shallow.\n", "\n", "## Output Matplotlib or Plotly plots\n", "\n", "While the default plotting backend/extension of hvPlot is Bokeh, it also supports rendering plots with either [Plotly](https://plotly.com/python/) or [Matplotlib](https://matplotlib.org/). Like Bokeh, Plotly is an interactive library that provides similar data-exploring actions (pan, hover, zoom, etc.). You can decide to use Plotly instead of Bokeh if you prefer its look and feel, need interactive 3D plots, or if your organization's policy is to use that plotting library. Matplotlib is supported for static plots only (e.g. PNG or SVG), which is useful for saving and sharing images and embedding them in documents for publication.\n", "\n", "To load a plotting backend you can use the `hvplot.extension` function. The first backend you declare in the call to the function will be set as the default one." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hvplot.extension('plotly', 'matplotlib')\n", "\n", "small_df.hvplot.scatter(x='longitude', y='latitude')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Once a backend is loaded with `hvplot.extension` you can use the `hvplot.output` function to switch from one backend to another." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hvplot.output(backend='matplotlib')\n", "\n", "plot = small_df.hvplot.scatter(x='longitude', y='latitude')\n", "plot" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Save and further customize plots\n", "\n", "You can easily save a plot with the `hvplot.save` function in one of the output formats supported by the backend. This is particularly useful when you are using Matplotlib as your plotting backend, with which you can create static plots suited for publication." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "fp_png, fp_svg = '../output/plot.png', '../output/plot.svg'\n", "hvplot.save(plot, fp_png)\n", "hvplot.save(plot, fp_svg)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from IPython.display import display, Image, SVG\n", "\n", "display(Image(fp_png))\n", "display(SVG(fp_svg))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "While hvPlot allows you to customize your plots quite extensively there are always situations where you want to customize them a little more than what can be done directly with hvPlot. In those cases you can use the `hvplot.render` function to get a handle on the underlying figure object. Below we're using Matplotlib's `xkcd` context manager to turn on *xkcd* sketch-style drawing mode while rendering the figure." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Turn off Matplotlib warnings (https://github.com/matplotlib/matplotlib/issues/26282)\n", "import logging\n", "logger = logging.getLogger('matplotlib')\n", "prev_level = logger.getEffectiveLevel()\n", "logger.setLevel(logging.ERROR)\n", "\n", "import matplotlib.pyplot as plt\n", "\n", "with plt.xkcd():\n", " mpl_fig = hvplot.render(plot)\n", "\n", "print(mpl_fig)\n", "mpl_fig" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "logger.setLevel(prev_level)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`mpl_fig` is a Matplotlib `Figure` object that we could further customize using [Matplotlib's API](https://matplotlib.org/stable/api)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Explore data\n", "\n", "`.hvplot()` is a simple and intuitive way to create plots. However when you are exploring data you don’t always know in advance the best way to display it, or even what kind of plot would be best to visualize the data. You will very likely embark in an iterative process that implies choosing a kind of plot, setting various options, running some code, and repeat until you’re satisfied with the output and the insights you get. The *Explorer* is a *Graphical User Interface* that allows you to easily generate customized plots, which in practice gives you the possibility to explore both your data and hvPlot’s extensive API.\n", "\n", "To create an *Explorer* you pass your data to the high-level `hvplot.explorer` function which returns a Panel layout that can be displayed in a notebook or served in a web application. This object displays on the right-hand side a preview of the plot you are building, and on the left-hand side the various options that you can set to customize the plot." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hvplot.output(backend='bokeh') # Switch the plotting backend back to Bokeh for more interactivity" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hvexplorer = hvplot.explorer(small_df)\n", "hvexplorer" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "With the explorer set up you can now start exploring your data in a very interactive way, changing for instance the plot kind to scatter, `x` to *longitude* and `y` to *latitude* to reproduce a map.\n", "\n", "Once you have found a representation of the data that you want to capture, you can record the configuration in a few ways:\n", "- call `hvexplorer.settings()` to obtain a configuration dictionary (let's call it `settings`) that you can then unpack to `small_df.hvplot(**setting)` to recreate the same exact plot you see in the explorer\n", "- call `hvexplorer.plot_code('small_df')` to print a string that you can copy and paste in another cell and that will again recreate the same exact plot you see in the explorer" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Don't feel bad (we don't!) about deleting the explorer from your notebook when you're done with it, it's not meant to clutter your notebooks, it's to enable you to even more easily explore data and collect insights." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Learn more\n", "\n", "As you can see, hvPlot makes it simple to explore your data interactively, with commands based on the widely used Pandas `.plot()` API but now supporting many more features and different types of data. The visualizations above just touch the surface of what is available from hvPlot, and you can explore the [hvPlot website](https://hvplot.holoviz.org) to see much more, or just explore it yourself using tab completion (`df.hvplot.`_[TAB]_). The following section will focus on how to put these plots together once you have them, linking them to understand and show their structure." ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }