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.
私はSQLが得意で、当然sqldfパッケージを使用しています。ただし、さまざまな SQL コマンドを実現するためのネイティブ R の方法を知っておくと役立ちます。
データフレーム列で、最後のコマンドと同様のカウントを達成するにはどうすればよいですか?
library(ggplot2) head(tips,3) sqldf("select count(distinct day) from tips")
わかった。今は少し良くなり、自分の質問に答えることができます。
d <- table(tips$day)
次に、そのリストの長さを数えます dim(d)