pandas.Series.describe — pandas 1.3.5 documentation
pandas.pydata.org › pandasIgnored for Series. Here are the options: ‘all’ : All columns of the input will be included in the output. A list-like of dtypes : Limits the results to the provided data types. To limit the result to numeric types submit numpy.number. To limit it instead to object columns submit the numpy.object data type.
pandas.Series.str.lower — pandas 1.3.5 documentation
pandas.pydata.org › pandasConverts uppercase to lowercase and lowercase to uppercase. Series.str.casefold. Removes all case distinctions in the string. Examples. >>> s = pd.Series( ['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']) >>> s 0 lower 1 CAPITALS 2 this is a sentence 3 SwApCaSe dtype: object. >>> s.str.lower() 0 lower 1 capitals 2 this is a sentence 3 ...