与文件一起.pdf
使用时,如何在输出中抑制 Google 的消息?用于生成说明问题的文件的 MWE 代码:ggmap
knitr
.Rnw
.Rnw
.pdf
\documentclass{article}
\begin{document}
<<>>=
library(ggmap)
qmap("empire state building", zoom=15, messaging=FALSE, source="google")
@
\end{document}
在结果.pdf
中,出现以下(格式不正确)消息:
Map from URL : http://maps.googleapis.com/maps/api/staticmap?center=empire+state+building&zoom=15&size=%20640x640&scale=%202&maptype=terrain&sensor=false
Google Maps API Terms of Service : http://developers.google.com/maps/terms
Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=empire+state+building&sensor=false
Google Maps API Terms of Service : http://developers.google.com/maps/terms
怎样才能抑制这些消息?我希望messaging=FALSE
能做到这一点。