pandas.Series.isin — pandas 1.3.5 documentation
pandas.pydata.org › api › pandaspandas.Series.isin. ¶. Series.isin(values) [source] ¶. Whether elements in Series are contained in values. Return a boolean Series showing whether each element in the Series matches an element in the passed sequence of values exactly. Parameters. valuesset or list-like. The sequence of values to test. Passing in a single string will raise a ...
pandas.Series.abs — pandas 1.3.5 documentation
pandas.pydata.org › api › pandaspandas.Series.abs. ¶. Return a Series/DataFrame with absolute numeric value of each element. This function only applies to elements that are all numeric. Series/DataFrame containing the absolute value of each element. Calculate the absolute value element-wise. For complex inputs, 1.2 + 1j, the absolute value is a 2 + b 2.
pandas.Series.values — pandas 1.3.5 documentation
pandas.pydata.org › api › pandaspandas.Series.values ¶. pandas.Series.values. ¶. Return Series as ndarray or ndarray-like depending on the dtype. We recommend using Series.array or Series.to_numpy (), depending on whether you need a reference to the underlying data or a NumPy array. Reference to the underlying data. A NumPy array representing the underlying data.