{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import panel as pn\n", "import hvplot.pandas\n", "\n", "from sklearn.cluster import KMeans\n", "from bokeh.sampledata import iris\n", "pn.extension()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This app provides an example of building a simple dashboard using Panel. It demonstrates how to take the output of k-means clustering on the Iris dataset (performed using scikit-learn), parameterizing the number of clusters and the x and y variables to plot. The entire clustering and plotting pipeline is expressed as a single reactive function that returns a plot that responsively updates when one of the widgets changes." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "flowers = iris.flowers.copy()\n", "cols = list(flowers.columns)[:-1]\n", "\n", "x = pn.widgets.Select(name='x', options=cols)\n", "y = pn.widgets.Select(name='y', options=cols, value='sepal_width')\n", "n_clusters = pn.widgets.IntSlider(name='n_clusters', start=1, end=5, value=3)\n", "\n", "@pn.depends(x.param.value, y.param.value, n_clusters.param.value)\n", "def get_clusters(x, y, n_clusters):\n", " kmeans = KMeans(n_clusters=n_clusters)\n", " est = kmeans.fit(iris.flowers.iloc[:, :-1].values)\n", " flowers['labels'] = est.labels_.astype('str')\n", " centers = flowers.groupby('labels').mean()\n", " return (flowers.sort_values('labels').hvplot.scatter(x, y, c='labels') *\n", " centers.hvplot.scatter(x, y, marker='x', color='black', size=200,\n", " padding=0.1, line_width=5))\n", "\n", "pn.Column(\n", " '# Iris K-Means Clustering',\n", " pn.Row(pn.WidgetBox(x, y, n_clusters), get_clusters)\n", ").servable()" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 2 }