.pdf
ファイルで使用ggmap
する場合、出力で Google のメッセージを非表示にするにはどうすればよいknitr
.Rnw
ですか? .Rnw
問題を説明するために使用されるファイルの MWE コード.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
でいました。