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.
異なるクラスの変数を持つ大きなデータフレームがあります。クラス因子の変数だけに関数を適用したい。どうやってやるの?
次のようなことを試してください:
lapply(data, function(x) if(is.factor(x)) foo(x) else x)