
Overview#
A high-level app and dashboarding solution for Python
Panel is an open-source Python library that lets you create custom interactive web apps and dashboards by connecting user-defined widgets to plots, images, tables, or text.
Show code cell source
import panel as pn
import pandas as pd
import holoviews as hv
from sklearn.cluster import KMeans
penguins = pd.read_csv('https://raw.githubusercontent.com/mwaskom/seaborn-data/master/penguins.csv')
cols = list(penguins.columns)[:-1]
pn.extension('ace')
import hvplot.pandas