我正在使用 R 中的 Brew 包来创建一个包含分析结果的降价文件。
使用 Brew 语法,我的代码如下所示:
<%= ggplot.hist %>
其中 ggplot.hist 是我的 ggplot 对象。但是,我不断收到以下错误:
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'list') cannot be handled by 'cat'
Brew 似乎调用了 cat 函数,该函数无法在 ggplot 上运行。
希望这是有道理的。有没有人在使用 Brew 时能够让 ggplot 工作?
谢谢!