在R中操纵直方图

时间:2011-09-30 02:46:44

标签: r plot histogram

我有一个直方图,我想在x轴上移动10个单位。

h1 <- hist(t1,breaks=15)
plot(h1,xlim=c(0,200),col="red")

我该怎么做?

2 个答案:

答案 0 :(得分:1)

如果您的原件是:

h1 <- hist(t1,breaks=15)
plot(h1,xlim=c(0,200),col="red")

那么这样做吗?

h1 <- hist(t1,breaks=15)
plot(h1,xlim=c(-10,190),col="red")

没有你的t1数据,我说不出来。但那是你想要做的吗?

答案 1 :(得分:0)

您可以指定刹车 例如:

b<-seq(range(t1)[1],range(t1)[2],length.out=15)

然后你可以操纵

b<-seq(range(t1)[1],range(t1)[2],length.out=15)-10
h1<-hist(t1, breaks=b)