You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Commonly used plots are easily accessible via the `plot()` method of the Series object. We have seen a bar plot above already. The `Series.plot()` method accepts an argument `kind` such as `kind=\"bar\"`, but there is an equivalent method `Series.plot.bar()` avaialble.\n",
610
+
"Commonly used plots are easily accessible via the `plot()` method of the Series object. We have seen a bar plot above already. The `Series.plot()` method accepts an argument `kind` such as `kind=\"bar\"`, but there is an equivalent method `Series.plot.bar()` available.\n",
611
611
"\n",
612
612
"Further examples:"
613
613
]
@@ -656,7 +656,7 @@
656
656
"cell_type": "markdown",
657
657
"metadata": {},
658
658
"source": [
659
-
"We can also fetch the data from the series and drive the plotting \"manually\" ourselves:"
659
+
"We can also retrieve the data from the series and drive the plotting \"manually\" ourselves:"
660
660
]
661
661
},
662
662
{
@@ -667,8 +667,8 @@
667
667
"source": [
668
668
"import matplotlib.pyplot as plt\n",
669
669
"\n",
670
-
"names = list(stock.index)\n",
671
-
"values = list(stock.values)\n",
670
+
"names = list(stock.index) # conversion to list not necessary \n",
671
+
"values = list(stock.values) # conversion to list not necessary\n",
0 commit comments