pandas.Series.to_frame
- Series.to_frame(name=<no_default>)[source]
-
Convert Series to DataFrame.
- Parameters:
-
- name:object, optional
-
The passed name should substitute for the series name (if it has one).
- Returns:
-
- DataFrame
-
DataFrame representation of Series.
Examples
>>> s = pd.Series(["a", "b", "c"], ... name="vals") >>> s.to_frame() vals 0 a 1 b 2 c
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Series.to_frame.html