尝试修改主题设置时,此简单代码给出以下错误:
library(ggplot2)
theme_nogrid <- theme_set(theme_update(
plot.margin=unit(c(.25, .25, .25, .25), "in"),))
Error in do.call(theme, list(...)) : could not find function "unit"
R
给我任何使用'unit'的元素的错误。其他任何不称为“单位”的设置都可以正常工作。我正在运行R v.2.15.2(64位Windows)。
我在网上广泛搜索了此问题,却一无所获。感谢您对问题的任何建议。
require(grid)