We often need map a Pandas Series with another dictionary, list or series.
By default, Pandas has a function called pandas.Series.map
. With this function, it is very easy to map values of a dictionary to a Pandas Series according to the keys. However, this function does not work with lists as it only accepts function, dict or Series as input.
In this case, we need find another solution. Yes, Pandas provides pandas.Series.str.contains
and pandas.Series.str.match
. Both of them use regular expression to do the matching. It is fine to do the mapping when the list only contains a small number of items. However, it becomes extremely slow to map with a huge list.
To bypass this problem, the best solution would be converting a list to a dict and then using pandas.Series.map
:
This is as fast as mapping a dictionary to a Series, well, apparently.
Here is another usage case. We have a DF Series, we aim to do a conditional replacement. If the the condition is complicated, it is not easy to do such a replacement in pandas directly. Therefore, we can construct a dictionary to map the original and target patterns, then we use map
to finish such job. This is way faster than using pandas.Series.str.replace
or pandas.Series.str.translate
.