diff --git a/README.md b/README.md index 3a4e650..940a77b 100644 --- a/README.md +++ b/README.md @@ -3108,6 +3108,7 @@ Name: a, dtype: int64 ```python = .append() # Or: pd.concat() = .combine_first() # Adds items that are not yet present (extends). +combine, update? ``` #### Aggregations: @@ -3131,6 +3132,7 @@ Name: a, dtype: int64 ```python = .diff/cumsum/rank/pct_change() # …/fillna/ffill/interpolate() = .apply/agg/transform() +map? ``` ```python diff --git a/index.html b/index.html index 00c7030..69e6ccd 100644 --- a/index.html +++ b/index.html @@ -2637,6 +2637,7 @@ Name: a, dtype: int64
<Sr> = <Sr>.append(<Sr>)                      # Or: pd.concat(<coll_of_Sr>)
 <Sr> = <Sr>.combine_first(<Sr>)               # Adds items that are not yet present (extends).
+combine, update?
 

Aggregations:

<el> = <Sr>.sum/max/mean/idxmax/all()
 <el> = <agg_func>(<Sr>)
@@ -2653,6 +2654,7 @@ Name: a, dtype: int64
 

Transformations:

<Sr> = <Sr>.diff/cumsum/rank/pct_change()     # …/fillna/ffill/interpolate()
 <Sr> = <Sr>.apply/agg/transform(<trans_func>)
+map?
 
+-------------+--------+-----------+---------------+