diff --git a/README.md b/README.md index 736cd2c..c78afd8 100644 --- a/README.md +++ b/README.md @@ -3193,7 +3193,7 @@ Name: a, dtype: int64 ```python .plot.line/area/bar/pie/hist() # Generates a plot. `plt.show()` displays it. ``` -* **Also: `'pd.cut(, bins=)'`, `'.quantile()'`.** +* **Also: `'pd.cut(, bins=)'` and `'.quantile()'`.** * **Indexing objects can't be tuples because `'obj[x, y]'` is converted to `'obj[(x, y)]'`.** * **Pandas uses NumPy types like `'np.int64'`. Series is converted to `'float64'` if we assign np.nan to any item. Use `'.astype()'` to get converted Series.** * **Series will silently overflow if we run `'pd.Series([100], dtype="int8") + 100'`!** diff --git a/index.html b/index.html index 5ff18a3..4d7c1a4 100644 --- a/index.html +++ b/index.html @@ -2601,7 +2601,7 @@ Name: a, dtype: int64
<S>.plot.line/area/bar/pie/hist()              # Generates a plot. `plt.show()` displays it.
 
    -
  • Also: 'pd.cut(<S>, bins=<int/coll>)', '<S>.quantile(<float/coll>)'.
  • +
  • Also: 'pd.cut(<S>, bins=<int/coll>)' and '<S>.quantile(<float/coll>)'.
  • Indexing objects can't be tuples because 'obj[x, y]' is converted to 'obj[(x, y)]'.
  • Pandas uses NumPy types like 'np.int64'. Series is converted to 'float64' if we assign np.nan to any item. Use '<S>.astype(<str/type>)' to get converted Series.
  • Series will silently overflow if we run 'pd.Series([100], dtype="int8") + 100'!