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.
我在 R 中有一个数据框列表。它们是使用 lapply 和 read.csv 命令创建的。我想知道列表中每个数据框的行数。nrow 命令不适用于此列表。我不确定可能因为它是一个列表。关于计算列表中每个数据框的行数的任何想法?
列表没有行。用于sapply循环列表:
sapply
sapply(data.frame.list, nrow)
或 lapply- 区别在于输出
lapply(data.frame.list, function(x) nrow(x))