GGPLOT中的错误R-x变量是离散的

时间:2017-06-15 08:03:53

标签: r

enter image description here执行R代码以下时,收到如下错误: -

代码: -

ggplot(train,aes(x = Pclass,fill=factor(Survived)))+
geom_histogram(width = 0.5)+
xlab("Pclass")+
ylab("TotalCount")+
labs(fill="Survived")

错误: -

  

错误:StatBin需要x变量的连续x变量   离散。也许你想要stat =“count”?

可能的原因是什么? 请帮忙。 感谢

2 个答案:

答案 0 :(得分:0)

尝试这个:

  ggplot(train,aes(x = Pclass,fill=factor(Survived)))+
    geom_bar(width = 0.5)+
    xlab("Pclass")+
    ylab("TotalCount")+
    labs(fill="Survived")

答案 1 :(得分:0)

您的Pclass有一类“本质上是离散的因子。我们希望它是连续的,因此请将因子转换为整数格式

<ul>
    begin loop...
        <li>
            <form action="/" method="post">
                <input type="hidden" name="country" value="India"/>
                <button type="submit" name="button">India</button>
            </form>               
        </li>
    end loop.
</ul>

然后编写您编写的代码。这将起作用!