diff --git a/README.md b/README.md index 683dfdf..9149f30 100644 --- a/README.md +++ b/README.md @@ -3184,7 +3184,8 @@ Name: a, dtype: int64 ``` ```python -.plot.line/area/bar/pie/hist() # Generates a plot. `plt.show()` displays it. +.plot.line/area/bar/pie/hist() # Generates a plot. Accepts `title=`. +plt.show() # Displays the plot. Also plt.savefig(). ``` * **Use `'print(.to_string())'` to print a Series that has more than 60 items.** * **Use `'.index'` to get collection of keys and `'.index = '` to update them.** diff --git a/index.html b/index.html index 1b924d0..3e580c9 100644 --- a/index.html +++ b/index.html @@ -2608,7 +2608,8 @@ Name: a, dtype: int64 <S> = <S>.dt.year/month/day/hour # Use pd.to_datetime(<S>) to get S of datetimes. <S> = <S>.dt.to_period('y/m/d/h') # Quantizes datetimes into Period objects. -
<S>.plot.line/area/bar/pie/hist()              # Generates a plot. `plt.show()` displays it.
+
<S>.plot.line/area/bar/pie/hist()              # Generates a plot. Accepts `title=<str>`.
+plt.show()                                     # Displays the plot. Also plt.savefig(<path>).
 
  • Use 'print(<S>.to_string())' to print a Series that has more than 60 items.