Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの名前付きセレクションを作成しました
df.select(df.x => 2,name='bigger') df.select(df.x < 2,name='smaller')
クールです。selectionたとえば、多くの (つまり、統計的な) 関数が提供するパラメーターを使用できます。
selection
df.count('*',selection='bigger')
しかし、フィルターで名前付き選択を使用する方法もありますか? 何かのようなもの
df['bigger']