- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我通过函数创建的条形图上注释标准消息。以下是代码:
hashbar <- function(x) {
suppressWarnings(library(stringr))
hash <- "#[A-Za-z0-9]{1,}"
hashtg <- str_extract_all(x$text, hash)
hashtg <- as.data.frame(unlist(hashtg))
hashtg <- as.data.frame(sort(table(hashtg), decreasing = TRUE)[1:15])
names(hashtg)[1] <- "Freq"
hashtg$hashtag <- rownames(hashtg)
rownames(hashtg) <- NULL
suppressWarnings(library(ggplot2))
suppressWarnings(library(RColorBrewer))
p <- ggplot(hashtg, aes(x=reorder(hashtag, Freq), y = Freq, fill = hashtag)) + geom_bar(stat="identity") +
geom_bar(width = 0.4) + xlab("Hashtags Used") + ylab("Number of responses") +
geom_text(aes(label=Freq), hjust = 1, colour = "white" ) +
ggtitle("Analysis of Most Frequently Used Hashtags") +
theme(plot.title=element_text(size=rel(1.2), lineheight = 1, face = "bold")) +
theme(axis.text = element_text(size = 12, color = "black")) +
theme(axis.title = element_text(size=12, face = "bold")) +
theme(panel.background = element_rect(fill = "grey95")) +
theme(legend.position = "none") +
coord_flip()
p + annotate("text", x = Inf, y = -Inf, label = "This is a test", hjust = 1.1, vjust = -0.5)
p
}
structure(list(text = c("_ShaneMacD: Great tour between the two sides. Shame the Kiwis have to go so the Aussies can come over. #ENGvNZ",
"- Kailua Kona, Hawaii : #travel #tour #trip #vacation #holiday #adventure #place #destinations #outd http://t.co/MocA1VMmup",
"- Kailua Kona, Hawaii : #travel #tour #trip #vacation #holiday #adventure #place #destinations #outd http://t.co/QHf2neoDHn",
"- Kailua Kona, Hawaii : #travel #tour #trip #vacation #holiday #adventure #place #destinations #outd http://t.co/vTbrdqw4tq",
"-----> http://t.co/5cE07Ey3JM Some amazing places of India #IncredibleIndia #tourism #travel #traveltips #PlacesILove http://t.co/p3fnVJhNGS",
"----> http://t.co/2vWtTWdBD6 Before dying make sure to visit these places buddies #travel #tourism #Backpacking #trip #tourists #cool"
), inreply = c("", "", "", "", "", ""), source = c("IFTTT", "Pinterest",
"Pinterest", "Pinterest", "TwitterWebClient", "TwitterWebClient"
), tweet_time = c("24/06/15 2:41", "30/06/15 11:54", "30/06/15 11:54",
"30/06/15 11:54", "15/06/15 15:45", "25/06/15 12:08"), screen_name = c("izenkast",
"myvacationtour", "myvacationtour", "myvacationtour", "Alchetron",
"Alchetron"), followers = c(7223L, 489L, 489L, 489L, 60909L,
61862L), friends = c(759L, 15L, 15L, 15L, 42989L, 49767L), favorites = c(3L,
0L, 0L, 0L, 72L, 88L), statuses = c(16761L, 4069L, 4065L, 4066L,
301L, 343L), membersince = c("04/01/15 0:23", "26/04/12 10:11",
"26/04/12 10:11", "26/04/12 10:11", "08/11/13 21:09", "08/11/13 21:09"
), timezone = c("Chennai", "ahmedabad,Gujarat,India,380015",
"ahmedabad,Gujarat,India,380015", "ahmedabad,Gujarat,India,380015",
"Mumbai, Maharashtra", "Mumbai, Maharashtra"), tweet_date = c("24/06/15",
"30/06/15", "30/06/15", "30/06/15", "15/06/15", "25/06/15"),
twit_time = c("24/06/15 2:41", "30/06/15 11:54", "30/06/15 11:54",
"30/06/15 11:54", "15/06/15 15:45", "25/06/15 12:08"), rtt = c("T",
"T", "T", "T", "T", "T"), state = c("TN", "Guj", "Guj", "Guj",
"Mah", "Mah"), zone = c("South", "West", "West", "West",
"West", "West")), .Names = c("text", "inreply", "source",
"tweet_time", "screen_name", "followers", "friends", "favorites",
"statuses", "membersince", "timezone", "tweet_date", "twit_time",
"rtt", "state", "zone"), row.names = c(NA, 6L), class = "data.frame")
Error in annotate("text", x = Inf, y = -Inf, label = "This is a test", :
unused arguments (x = Inf, y = -Inf, label = "This is a test", hjust = 1.1, vjust = -0.5)
R version 3.2.0 (2015-04-16)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: OS X 10.10.3 (Yosemite)
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] grid stats graphics grDevices utils datasets methods base
other attached packages:
[1] chron_2.3-45 gridExtra_0.9.1 topicmodels_0.2-2 lda_1.3.2 sna_2.3-2
[6] igraph_0.7.1 slam_0.1-32 wordcloud_2.5 tm_0.6-1 NLP_0.1-7
[11] repmis_0.4.4 RColorBrewer_1.1-2 ggplot2_1.0.1 stringr_1.0.0 shinyapps_0.4.1.4
[16] downloader_0.4 quantmod_0.4-5 TTR_0.23-0 xts_0.9-7 zoo_1.7-12
[21] mapproj_1.2-2 maps_2.3-9 shiny_0.12.1
loaded via a namespace (and not attached):
[1] modeltools_0.2-21 reshape2_1.4.1 lattice_0.20-31 colorspace_1.2-6 stats4_3.2.0
[6] htmltools_0.2.6 SnowballC_0.5.1 R.oo_1.19.0 R.utils_2.1.0 R.cache_0.10.0
[11] plyr_1.8.2 munsell_0.4.2 gtable_0.1.2 R.methodsS3_1.7.0 labeling_0.3
[16] httpuv_1.3.2 parallel_3.2.0 proto_0.3-10 Rcpp_0.11.6 xtable_1.7-4
[21] scales_0.2.4 jsonlite_0.9.16 mime_0.3 digest_0.6.8 stringi_0.4-1
[26] RJSONIO_1.3-0 tools_3.2.0 bitops_1.0-6 magrittr_1.5 RCurl_1.95-4.7
[31] MASS_7.3-40 data.table_1.9.4 httr_0.6.1 rstudioapi_0.3.1 R6_2.0.1
[36] rstudio_0.98.1103
最佳答案
包 NLP 还有一个 annotate
函数,因为你在 ggplot2 之后加载了它,NLP::annotate
最终屏蔽 ggplot2::annotate
.在 ggplot2 之后加载 NLP 时,您会收到有关屏蔽的警告消息:
library(ggplot2)
library(NLP)
Attaching package: ‘NLP’
The following object is masked from ‘package:ggplot2’:
annotate
ggplot2::annotate
而不是
annotate
如果您当前 session 中的工作涉及包 NLP,并且您不想返回并切换包加载的顺序,则可以避免此问题。
关于r - 注释ggplot条形图错误: Unused arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32056718/
我想在我的 android 应用程序中实现一个反馈/评级图表。(就像当你打开 google play 并检查应用程序的反馈时,有一个来自投票它的用户的彩色图表)任何人都可以帮助我如何开始那个?感谢您提
我正在尝试使用 LaTeX 制作条形图。到目前为止我一直不成功,所以任何人都可以帮助我,也许是最近项目的副本?如何使用 pstricks 制作条形图?我会很感激最简单的解决方案,因为我最近才开始使用
我有一个包含 6 个事件及其发生时间跨度的 csv 表。我的变量是开始日期、结束日期和事件 ID。我打算创建一个水平直方图/条形图可视化来显示时间范围,即某些类型的事件持续了多长时间。 X 轴应该有多
我想制作可以指定条形最小值的条形图(很像盒须图中的盒子)。条形图可以做到吗?我怀疑答案在 ggplot 中,但我找不到示例。 这是一些数据: X Jan F
我想使用以下数据来创建可视化: > dput(data) structure(c(1264L, 2190L, 2601L, 1441L, 1129L, 2552L, 1820L, 306L,
我有一个包含正值和负值的数据框。我想显示一个显示两个条形的条形图,一个条形显示正值的百分比,另一个条形图显示负值的百分比。 dummy = pd.DataFrame({'A' : [-4, -3, -
我正在尝试在栏中插入自定义文本,我搜索了很多线程,但仍然没有得到任何解决方案。然后我想减小 y 轴的步长。我已附上我的代码。 jQuery( document ).ready(function() {
我正在使用 pandas 来创建条形图。这是一个例子: df=pd.DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd']) df.
我想在python中制作一个分类图来表示几个变量的范围。我想也许我会使用条形图并为条形设置范围。这是我的条形图 import matplotlib.pyplot as plt import numpy
我有一个显示 3 个条形的堆叠百分比条形图。 JSFiddle:https://jsfiddle.net/Lr0bszj6/ 由于某种原因,条形之间有很多空间并且没有与标签对齐(只有中间一个)。 设置
我正在尝试使用 aChartEngine 将 GPS 数据(正在查看或正在使用的卫星)显示为条形图,但我没有在此 View 中显示任何数据。这是我的代码,所以你能告诉我我犯了什么错误吗? public
我正在使用 this chart implementation . 但是,它分散了我的数据,而不是相互堆叠。 我想在 1970 年堆叠我的第一个数组,在 1975 年堆叠第二个数组。换句话说,我希望有
我正在尝试用不同颜色为条形图中的各个条形着色,比如蓝色表示正,红色表示负。我在互联网上找不到任何有用的东西。我在下面的代码中发现每个条形图都根据第一个条形图的值着色,而不是为每个条形图单独设置颜色:
我刚刚转移到 pandas 0.20/matplotlib 2.0 python 3.6。 (共构成以下版本)。我用 pandas 来绘制条形图,因为 matplotlib 的级别总是太低。着色列的行
我正在尝试制作一个图,其中 x 轴是时间,y 轴是一个条形图,其中的条形图覆盖特定时间段,如下所示: ______________
我有一些非常基本的代码,它可以正常工作,除了所有内容都与顶部对齐...理想情况下,条形图应与底部对齐。我想我可以使用固定定位,因为尺寸是 50px x 50px 的平方,但我更喜欢“固定”少一点的东西
这是我用来 Dim ejex As String, ejey As String Dim graficos As String Worksheets("Sheet1").Activate ejex =
我有一个生成如下条形图的 gnuplot 脚本: 输入数据位于具有多列的文件中,每一列最终都构成图表中的一个集群(示例中显示了 2 个集群)。每个文件都构成图表中的一个条形(示例中有 9 个)。每个文
我正在为我的数据 movies 使用库 ggplot2movies 请记住,我指的是 mpaa 评级和用户评级,这是两个不同的事物。如果您不想加载 ggplot2movies 库,这里是相关数据的示例
有没有一种简单的方法可以使用Pandas DataFrame.plot(kind='bar')方法按列名指定条形颜色? 我有一个脚本,可以从目录中的几个不同数据文件生成多个DataFrame。例如,它
我是一名优秀的程序员,十分优秀!