我正在为R中的ggplot2设置一个问题集。我的一个问题是要求进行比例日志转换,我的笔记和Hadley Wickam的书都可以通过这个函数完成:
scale_x_log()
但是,当我使用此功能时,R无法识别它。任何时候我使用它,它会给我这个错误响应:
Error: could not find function "scale_x_log"
当我使用帮助功能"?scale_x_log"
时,它会返回以下错误消息:
No documentation for ‘scale_x_log’ in specified packages and libraries:
you could try ‘??scale_x_log’
"??scale_x_log"
页面将我带到"ggplot2::scale_x_continuous"
,其中列出了函数"scale_x_log10()"
。我想知道我使用的功能是否不存在,虽然这对我来说似乎不太可能。我也想知道我是否需要下载另一个包或其他东西。我希望这个问题很清楚......