我正在尝试使用highcharter
库
我的数据框mostly_used
看起来像这样:
word n
1 sir 8484
2 time 7339
3 miss 5954
4 dear 5422
5 hand 5305
6 head 4978
7 night 4240
8 day 4124
9 eyes 4040
10 house 4011
我使用以下代码行:
hchart(mostly_used, x = word, y = n, type = "column", name = "word count"
, color = "blue") %>% hc_add_theme(hc_theme_null())
我收到错误Error: Columns`x`, `y` must be 1d atomic vectors or lists
任何人都能解释为什么会这样吗?
编辑:
> dput(mostly_used)
structure(list(word = c("sir", "time", "miss", "dear", "hand",
"head", "night", "day", "eyes", "house"), n = c(8484L, 7339L,
5954L, 5422L, 5305L, 4978L, 4240L, 4124L, 4040L, 4011L)), .Names = c("word",
"n"), row.names = c(NA, -10L), class = c("tbl_df", "tbl", "data.frame"
))
答案 0 :(得分:4)
我查看了文档,看到示例没有使用您尝试过的语法。它似乎更具功能性。 (我的编辑之前的努力包括数据示例,所以我的mostly_used
只是一个普通的数据框,因此我使用as.character
来强制我认为是一个因素。这证明是不必要的但无害。)
我从我的机器上的插图中取出了线型示例:http://localhost:13297/library/highcharter/doc/replicating-highcharts-demos.html并替换了相应的值:
highchart() %>%
hc_chart(type = "column") %>%
hc_title(text = "Counts of Mostly Used") %>%
hc_xAxis(categories = as.character(mostly_used$word)) %>%
hc_yAxis(title = list(text = "N")) %>%
hc_plotOptions(line = list(
dataLabels = list(enabled = TRUE),
enableMouseTracking = FALSE)
) %>%
hc_series(
list( name = "Used",
data = mostly_used$n
)
)
这是我的Chrome会话中显示的内容的屏幕截图:
您对不同文档的引用的评论显示,有一个hcaes
- 函数包围x和y参数赋值。这对我有用:
hchart(mostly_used ,type = "column", title="Counts of Mostly Used",
hcaes( x = word, y= n) )
"为什么"是否需要尊重该包装处理非标准评估。它模拟了ggplot2包的策略,即使用" aes" -function来定义使用真实R名称的列名,即在数据参数的上下文中计算的未加引号的标记。