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 包。但是,了解原生 R 方式来实现各种 SQL 命令是很有用的。
在数据框列上,如何实现与上一个命令类似的计数?
library(ggplot2) head(tips,3) sqldf("select count(distinct day) from tips")
行。我现在好多了,可以回答我自己的问题。
d <- table(tips$day)
然后计算该列表dim(d)有多长