行号显示而不是值

时间:2015-07-16 06:18:03

标签: r ggplot2

我正在按照以下方式使用问题Add dynamic subtitle using ggplot的答案:

      ggtitle(bquote(atop(.(df$fname[row]),
                          atop(italic(.(param_string)), ""))))

当我查看我的图表时,我看到了:

enter image description here

而不是df $ fname [row]的实际值,它已被独立验证为其他内容。

这里发生了什么?

1 个答案:

答案 0 :(得分:1)

试试这个:

 ggtitle(bquote(atop(.(paste(df$fname[row])),atop(italic(.(param_string)), ""))))