作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Maps.R 库中的 worldmap 函数。它在 ggplot2 中运行。
我想让传说更大一点。我在用
theme(legend.key.size = unit(measure, "units"))
could not find function "unit"
最佳答案
函数unit
在grid
包裹。您需要显式加载它并将其添加到您的搜索路径
library("grid")
ggplot2
需要
grid
,
grid
在
ggplot2
时加载已加载,其功能可供
ggplot2
使用.但是,它没有添加到全局搜索路径中,因此当您尝试直接调用它们时,找不到它的 (
grid
的) 函数。调用
library()
(或
require()
)使它们可以被找到。
library(package)
andrequire(package)
both load the package with namepackage
.require
is designed for use inside other functions; it returnsFALSE
and gives a warning (rather than an error aslibrary()
does by default) if the package does not exist.
关于r - ggplot2世界地图中的图例大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16088981/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!