pandas.Series.to_frame

Series.to_frame(name=None)[source]

Convert Series to DataFrame.

Parameters
name:object, default None

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–2021, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.3.4/reference/api/pandas.Series.to_frame.html