From c1a42195018a830df3152b93199aa3d230600446 Mon Sep 17 00:00:00 2001 From: maximlt Date: Wed, 11 Oct 2023 19:33:06 +0200 Subject: [PATCH] comment out cells with ; --- examples/user_guide/Plotting_with_Matplotlib.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/user_guide/Plotting_with_Matplotlib.ipynb b/examples/user_guide/Plotting_with_Matplotlib.ipynb index 478612534..03151d72a 100644 --- a/examples/user_guide/Plotting_with_Matplotlib.ipynb +++ b/examples/user_guide/Plotting_with_Matplotlib.ipynb @@ -338,7 +338,7 @@ "metadata": {}, "outputs": [], "source": [ - "flights.hvplot.hexbin(x='airtime', y='arrdelay', width=600, height=500, logz=True);" + "# flights.hvplot.hexbin(x='airtime', y='arrdelay', width=600, height=500, logz=True);" ] }, { @@ -461,7 +461,7 @@ "outputs": [], "source": [ "flight_subset = flights[flights.carrier.isin(['AA', 'US', 'OH'])]\n", - "flight_subset.hvplot.hist('depdelay', by='carrier', bins=20, bin_range=(-20, 100), width=300, subplots=True);" + "# flight_subset.hvplot.hist('depdelay', by='carrier', bins=20, bin_range=(-20, 100), width=300, subplots=True);" ] }, { @@ -575,7 +575,7 @@ "outputs": [], "source": [ "flight_subset = flights[flights.carrier.isin(['AA', 'US', 'OH'])]\n", - "flight_subset.hvplot.box('depdelay', by='carrier', ylim=(-10, 70));" + "# flight_subset.hvplot.box('depdelay', by='carrier', ylim=(-10, 70));" ] }, {