条件に合うものの個数を数えたい場合があるのですが、
例えば、iris データの setosa の数を数えたいときに
R
length(which(iris[5] == "setosa"))
と書いているんですが、この length(which())
ができる一つの関数って無いんでしょうか?
Go to list of users who liked
More than 5 years have passed since last update.
条件に合うものの個数を数えたい場合があるのですが、
例えば、iris データの setosa の数を数えたいときに
length(which(iris[5] == "setosa"))
と書いているんですが、この length(which())
ができる一つの関数って無いんでしょうか?
Register as a new user and use Qiita more conveniently
Go to list of users who liked