1

当我使用不同的类和函数来运行它们时,我的 ggplot2 图形由于某种原因没有绘制出来。但是,如果我直接手动运行绘图图形代码,它就会运行。

例如;这是在一个脚本上

     sentiment.createGraph = function(list_keyword1){
        *calculate df and meanscore*
            .......................
            .......................
        g = ggplot(df, aes(x=keywords,y=meanscore)) +
        geom_bar(data=df, aes(x=datas, fill=datas),stat="identity") +
        ggtitle("Average Sentiment Score")
        return(g)
     }

所以这是另一个功能脚本,它通过单击按钮运行所有这些,是的,我正在做 twitterR 例如;

list_keyword1 <- searchTwitter(svalue(textBox_keyword1),
                               n=as.numeric(svalue(textBox_numTweet)),
                               cainfo="cacert.pem")
sentiment.createGraph(list_keyword1)  # this is where i call the function above 

计算和创建图表,但图表根本没有绘制。我需要帮助谢谢:/

4

0 回答 0