Skip to content

Commit

Permalink
comment out cells with ;
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Oct 11, 2023
1 parent 2619e1a commit c1a4219
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/user_guide/Plotting_with_Matplotlib.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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);"
]
},
{
Expand Down Expand Up @@ -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);"
]
},
{
Expand Down Expand Up @@ -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));"
]
},
{
Expand Down

0 comments on commit c1a4219

Please sign in to comment.