gpt4 book ai didi

r - 如何在 ggplot 中绘制 y 值向量?

转载 作者:行者123 更新时间:2023-12-04 23:49:36 24 4
gpt4 key购买 nike

如何在 ggplot2 中绘制 y 值向量?

 pValues_Both <- c(0.004079,0.4392,0.6882,0.02053,0.4849,0.4938,0.3379,0.8408,0.07067,0.6603,0.2547,0.8692,0.8946,0.0696,0.6206,0.9559,0.9119,0.5162,0.2469,0.1582)

我尝试了以下方法:
pValues_Both.m <- melt(pValues_Both)

ggplot(pValues_Both.m, aes(y=value)) + geom_bar(stat="identity")

Error in exists(name, envir = env, mode = mode) :
argument "env" is missing, with no default

最佳答案

geom_bar()还需要x值来制作条形图。一种解决方法是仅提供与 value 长度相同的数字序列。 .

ggplot(pValues_Both.m, aes(x=seq_along(value),y=value)) + 
geom_bar(stat="identity")

关于r - 如何在 ggplot 中绘制 y 值向量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25824383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com