回答:
選択肢が2つしかない場合:
df['color'] = np.where(df['Set']=='Z', 'green', 'red')
例えば、
import pandas as pd
import numpy as np
df = pd.DataFrame({'Type':list('ABBC'), 'Set':list('ZZXY')})
df['color'] = np.where(df['Set']=='Z', 'green', 'red')
print(df)
収量
Set Type color
0 Z A green
1 Z B green
2 X B red
3 Y C red
3つ以上の条件がある場合は、を使用しますnp.select
。たとえば、あなたがしたい場合color
であることを
yellow
いつ (df['Set'] == 'Z') & (df['Type'] == 'A')
blue
とき(df['Set'] == 'Z') & (df['Type'] == 'B')
purple
とき(df['Type'] == 'B')
black
、次に使用します
df = pd.DataFrame({'Type':list('ABBC'), 'Set':list('ZZXY')})
conditions = [
(df['Set'] == 'Z') & (df['Type'] == 'A'),
(df['Set'] == 'Z') & (df['Type'] == 'B'),
(df['Type'] == 'B')]
choices = ['yellow', 'blue', 'purple']
df['color'] = np.select(conditions, choices, default='black')
print(df)
これは
Set Type color
0 Z A yellow
1 Z B blue
2 X B purple
3 Y C black
df['foo'] = np.where(df['Set']=='Z', df['Set'], df['Type'].shift(1))
リスト内包表記は、条件付きで別の列を作成する別の方法です。例のように、オブジェクトのdtypeを列で操作している場合、リスト内包表記は通常、他のほとんどのメソッドよりも優れています。
リスト内包表記の例:
df['color'] = ['red' if x == 'Z' else 'green' for x in df['Set']]
%timeitテスト:
import pandas as pd
import numpy as np
df = pd.DataFrame({'Type':list('ABBC'), 'Set':list('ZZXY')})
%timeit df['color'] = ['red' if x == 'Z' else 'green' for x in df['Set']]
%timeit df['color'] = np.where(df['Set']=='Z', 'green', 'red')
%timeit df['color'] = df.Set.map( lambda x: 'red' if x == 'Z' else 'green')
1000 loops, best of 3: 239 µs per loop
1000 loops, best of 3: 523 µs per loop
1000 loops, best of 3: 263 µs per loop
pd.DataFrame({'Type':list('ABBC')*100000, 'Set':list('ZZXY')*100000})
)はnumpy.where
ペースmap
が上がりますが、リストの理解度は非常に優れています(約50%速いnumpy.where
)。
df['color'] = ['red' if (x['Set'] == 'Z') & (x['Type'] == 'B') else 'green' for x in df]
df['color_type'] = np.where(df['Set']=='Z', 'green', df['Type'])
.iterrows()
は悪名高いので遅く、DataFrameは反復中に変更しないでください。
これを達成できる別の方法は
df['color'] = df.Set.map( lambda x: 'red' if x == 'Z' else 'green')
ディクショナリーを使用してリスト内のキーに新しい値をマップするこの猫のスキンを作成する別の方法を次に示します。
def map_values(row, values_dict):
return values_dict[row]
values_dict = {'A': 1, 'B': 2, 'C': 3, 'D': 4}
df = pd.DataFrame({'INDICATOR': ['A', 'B', 'C', 'D'], 'VALUE': [10, 9, 8, 7]})
df['NEW_VALUE'] = df['INDICATOR'].apply(map_values, args = (values_dict,))
それはどのようなものですか:
df
Out[2]:
INDICATOR VALUE NEW_VALUE
0 A 10 1
1 B 9 2
2 C 8 3
3 D 7 4
この方法はifelse
、作成する-typeステートメントが多い場合(つまり、置換する一意の値が多い場合)に非常に強力です。
そしてもちろん、あなたはいつでもこれを行うことができます:
df['NEW_VALUE'] = df['INDICATOR'].map(values_dict)
しかし、apply
私のアプローチでは、そのアプローチは上からのアプローチの3倍以上遅くなります。
そして、あなたはこれを使って、次のことをすることもできますdict.get
:
df['NEW_VALUE'] = [values_dict.get(v, None) for v in df['INDICATOR']]
.map()
解は〜の10倍高速です.apply()
。
.apply()
47秒かかりますが、では5.91秒しかかかりません.map()
。
以下は、ここで示した方法よりも時間がかかりますが、複数の列の内容に基づいて追加の列を計算でき、追加の列に対して3つ以上の値を計算できます。
「Set」列だけを使用した簡単な例:
def set_color(row):
if row["Set"] == "Z":
return "red"
else:
return "green"
df = df.assign(color=df.apply(set_color, axis=1))
print(df)
Set Type color
0 Z A red
1 Z B red
2 X B green
3 Y C green
より多くの色とより多くの列を考慮した例:
def set_color(row):
if row["Set"] == "Z":
return "red"
elif row["Type"] == "C":
return "blue"
else:
return "green"
df = df.assign(color=df.apply(set_color, axis=1))
print(df)
Set Type color
0 Z A red
1 Z B red
2 X B green
3 Y C blue
plydataを使用してこの種のことを行うこともできます(ただし、assign
and を使用するよりもさらに遅いようapply
です)。
from plydata import define, if_else
シンプルif_else
:
df = define(df, color=if_else('Set=="Z"', '"red"', '"green"'))
print(df)
Set Type color
0 Z A red
1 Z B red
2 X B green
3 Y C green
ネストif_else
:
df = define(df, color=if_else(
'Set=="Z"',
'"red"',
if_else('Type=="C"', '"green"', '"blue"')))
print(df)
Set Type color
0 Z A red
1 Z B red
2 X B blue
3 Y C green
多分これはパンダの新しいアップデートで可能だったかもしれませんが、私は以下がこれまでの質問に対する最も短いそしておそらく最良の答えだと思います。.loc
メソッドを使用して、必要に応じて1つまたは複数の条件を使用できます。
コードの要約:
df=pd.DataFrame(dict(Type='A B B C'.split(), Set='Z Z X Y'.split()))
df['Color'] = "red"
df.loc[(df['Set']=="Z"), 'Color'] = "green"
#practice!
df.loc[(df['Set']=="Z")&(df['Type']=="B")|(df['Type']=="C"), 'Color'] = "purple"
説明:
df=pd.DataFrame(dict(Type='A B B C'.split(), Set='Z Z X Y'.split()))
# df so far:
Type Set
0 A Z
1 B Z
2 B X
3 C Y
「色」列を追加し、すべての値を「赤」に設定します
df['Color'] = "red"
単一の条件を適用します。
df.loc[(df['Set']=="Z"), 'Color'] = "green"
# df:
Type Set Color
0 A Z green
1 B Z green
2 B X red
3 C Y red
または必要に応じて複数の条件:
df.loc[(df['Set']=="Z")&(df['Type']=="B")|(df['Type']=="C"), 'Color'] = "purple"
Pandasの論理演算子と条件付き選択については、こちらをご覧ください: Pandasでのブールインデックスの論理演算子
df.loc[(df['Set']=="Z") & (df['Type']=="A"), 'Color'] = "green"
.apply()
メソッドを持つ1つのライナーは次のとおりです。
df['color'] = df['Set'].apply(lambda set_: 'green' if set_=='Z' else 'red')
その後、df
データフレームは次のようになります。
>>> print(df)
Type Set color
0 A Z green
1 B Z green
2 B X red
3 C Y red
大量のデータを扱う場合は、メモしたアプローチが最適です。
# First create a dictionary of manually stored values
color_dict = {'Z':'red'}
# Second, build a dictionary of "other" values
color_dict_other = {x:'green' for x in df['Set'].unique() if x not in color_dict.keys()}
# Next, merge the two
color_dict.update(color_dict_other)
# Finally, map it to your column
df['color'] = df['Set'].map(color_dict)
この方法は、繰り返し値が多い場合に最も速くなります。私の一般的な経験則は、次の場合にメモすることです:data_size
> 10**4
&n_distinct
<data_size/4
例2,500行以下の異なる値を持つ10,000行のメモ化。
random.choices()
ます。