Pandas DataFrame での条件付き値の置換
Pandas DataFrame を使用する場合、指定された条件。この質問は、ユーザーがしきい値を超える特定の列の値をゼロに置き換えようとするシナリオを示しています。
最初に、ユーザーは次のアプローチを使用しようとしました:
df[df.my_channel > 20000].my_channel = 0
しかし、この方法では結果は得られませんでした。これは、Pandas がバージョン 0.20.0 以降 .ix インデクサーを非推奨にしており、ユーザーは代わりに .loc または .iloc インデクサーを使用する必要があるためです。
正しい解決策には、.loc または .iloc を使用して特定の行または列をターゲットにすることが含まれます。そして条件付き置換を実行します。 .loc の使用方法は次のとおりです:
mask = df.my_channel > 20000 column_name = 'my_channel' df.loc[mask, column_name] = 0
または、.loc を使用して同じタスクを 1 行で実行できます:
df.loc[df.my_channel > 20000, 'my_channel'] = 0
マスク変数は、条件を満たす行を識別するのに役立ちます。条件 df.my_channel > 20000、および df.loc[mask, column_name] = 0 は、指定された列の選択された行に 0 を割り当てます。
注: この特定のシナリオでは、代わりに .loc を使用することをお勧めします。 .iloc を使用した整数ベースのブール型インデックス作成は機能しないため、NotImplementedError を回避するために .iloc を削除します。サポートされています。
以上がPandas DataFrame 列の値を条件付きで置換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

forhandlinglaredataSetsinpython、usenumpyArrays forbetterperformance.1)numpyarraysarememory-effictientandfasterfornumericaloperations.2)nusinnnnedarytypeconversions.3)レバレッジベクトル化は、測定済みのマネージメーシェイメージーウェイズデイタイです

inpython、listsusedynamicmemoryallocation with allocation、whilenumpyArraysalocatefixedmemory.1)listsallocatemorememorythanneededededinitivative.2)numpyArrayasallocateexactmemoryforements、rededicablebutlessflexibilityを提供します。

inpython、youcanspecthedatatypeyfelemeremodelernspant.1)usenpynernrump.1)usenpynerp.dloatp.ploatm64、フォーマーpreciscontrolatatypes。

numpyisessentialfornumericalcomputinginpythonduetoitsspeed、memory efficiency、andcomprehensivematicalfunctions.1)それは、performsoperations.2)numpyArraysaremoremory-efficientthanpythonlists.3)Itofderangeofmathematicaloperty

contiguousMemoryAllocationisucial forArraysは、ForeffienceAndfastelementAccess.1)iteenablesConstantTimeAccess、O(1)、DuetodirectAddresscalculation.2)itemprovesefficiencyByAllowingMultiblementFechesperCacheLine.3)itimplifieMememm

slicingapythonlistisdoneusingtheyntaxlist [start:stop:step] .hore'showitworks:1)startisthe indexofthefirstelementtoinclude.2)spotisthe indexofthefirmenttoeexclude.3)staptistheincrementbetbetinelements

numpyallows forvariousoperationsonarrays:1)basicarithmeticlikeaddition、減算、乗算、および分割; 2)AdvancedperationssuchasmatrixMultiplication;

Arraysinpython、特にnumpyandpandas、aresentialfordataanalysis、offeringspeedandeficiency.1)numpyarraysenable numpyarraysenable handling forlaredatasents andcomplexoperationslikemoverages.2)Pandasextendsnumpy'scapabivitieswithdataframesfortruc


ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

Video Face Swap
完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

人気の記事

ホットツール

SublimeText3 英語版
推奨: Win バージョン、コードプロンプトをサポート!

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

SublimeText3 Linux 新バージョン
SublimeText3 Linux 最新バージョン

ZendStudio 13.5.1 Mac
強力な PHP 統合開発環境
