Loading [MathJax]/extensions/tex2jax.js

空のDataFrameに1行ずつデータを追加[pandas]

7月 26, 2020

サンプル

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import pandas as pd
df = pd.DataFrame()
for i in range(5):
tmp_series = pd.Series([i, i*i])
df = df.append(tmp_series, ignore_index=True)
df.columns = ["i", "i^2"]
print(df)
import pandas as pd df = pd.DataFrame() for i in range(5): tmp_series = pd.Series([i, i*i]) df = df.append(tmp_series, ignore_index=True) df.columns = ["i", "i^2"] print(df)
import pandas as pd

df = pd.DataFrame()

for i in range(5):
    tmp_series = pd.Series([i, i*i])
    df = df.append(tmp_series, ignore_index=True)
    
df.columns = ["i", "i^2"]

print(df)

出力結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
i i^2
0 0.0 0.0
1 1.0 1.0
2 2.0 4.0
3 3.0 9.0
4 4.0 16.0
i i^2 0 0.0 0.0 1 1.0 1.0 2 2.0 4.0 3 3.0 9.0 4 4.0 16.0
     i   i^2
0  0.0   0.0
1  1.0   1.0
2  2.0   4.0
3  3.0   9.0
4  4.0  16.0
0

Pandaspandas,Python

Posted by vastee