共计 397 个字符,预计需要花费 1 分钟才能阅读完成。
要将一个系列(Series)转换为 DataFrame,可以使用 Series 的 to_frame() 方法。
下面是一个简单的示例:
import pandas as pd
# 创建一个 Series
s = pd.Series([1, 2, 3, 4, 5])
# 将 Series 转换为 DataFrame
df = s.to_frame()
print(df)
输出结果为:
0
0 1
1 2
2 3
3 4
4 5
要将 Series 转换为 DataFrame 并指定列名,可以使用 to_frame() 方法的参数 name。例如:
import pandas as pd
# 创建一个 Series
s = pd.Series([1, 2, 3, 4, 5])
# 将 Series 转换为 DataFrame 并指定列名
df = s.to_frame(name='value')
print(df)
输出结果为:
value
0 1
1 2
2 3
3 4
4 5
希望这可以帮助到你!
丸趣 TV 网 – 提供最优质的资源集合!
正文完