DataFrameの1番楽で美しい作成方法
今回はPandas初心者に向けて「結局どの書き方が一番美しいの??」という疑問を解消する。
〜feat.独断と偏見〜
パターン1
import pandas as pd
import numpy as np
a0 = np.array([1,2,3,4,5])
a1 = np.array(['北海道','秋田','岩手','沖縄','鹿児島'])
IKITEE = pd.DataFrame({
'数字':a0,
'場所':a1,
})
print(IKITEE)
パターン2
import pandas as pd
import numpy as np
IKITEE = pd.DataFrame(
{'数字':[1,2,3,4,5],
'場所':['北海道','秋田','岩手','沖縄','鹿児島']},
columns = ['数字','場所'])
print(IKITEE)
こんな感じです。
Author And Source
この問題について(DataFrameの1番楽で美しい作成方法), 我々は、より多くの情報をここで見つけました https://qiita.com/marcopagot/items/d5e47b621b103123e011著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .