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.
私は data.frames のリストを持っており、それらのいくつかは NA で満たされています。リストに NA のみを含むこれらの data.frames を削除したいと思います。
次の 2 つのコマンドを使用しています。
list.df <- lapply(list.df, na.omit) list.df <- list.df[sapply(list.df, function(x) dim(x)[1] >0 )]
同じことを1行で行う方法はありますか?