如何显示某列的总数和某列的百分比

How to display the total number of a coloumn and the percentage of a coloumn

我需要显示以下内容:

  1. 总列表数 - 已给出列表,我需要从中找到总数
  2. 未审核的列表百分比:已给出列表,未审核的条目标记为 NA。

最后,我需要将这两个变量(总列表数、列表百分比)添加到一个数据框中并显示。

最适合使用的 R 脚本代码是什么?

正在创建示例数据框:

listings <- c("Listing_1", "Listing_2", "Listing_3", "Listing_4", "Listing_5")
reviews <- c("Good", "Very Good", "Bad", NA, "Very Bad")

df <- data.frame(listings, reviews)

房源数量:

dim(df)[1]

缺失评论的百分比:

sum(is.na(df["reviews"])) / dim(df)[1] * 100