Creating an element-wise minimum Series from two other Series in Python Pandas February 13, 2023 by Tarik I find this the simplest: import numpy as np smax = np.minimum(s1, s2) Link to docs (numpy.minimum)