I am having trouble finding a way to do an efficient element-wise minimum of two Series objects in pandas. For example I can add two Series easily enough:
In
I find this the simplest:
import numpy as np smax = np.minimum(s1, s2)
Link to docs (numpy.minimum)