plotrix中的y轴标记(gap.boxplot)

时间:2013-10-30 19:20:23

标签: r boxplot axis-labels plotrix

我有两个异常值我不想从图中省略,所以我在plotrix包中使用gap.boxplot。范围足够大,我做了两次休息。较低的范围应为0-400,中间为2050-2150,上限为4850-5000。我做了一个我很满意的情节,但是y轴上的抽搐没有正确显示。

如何更改抽搐,以便在y轴上显示正确的范围?

gap.boxplot(data$a ~ data$month,
gap=list(top=c(2150,4850),bottom=c(400,2050))
ytics = seq(0, 5000, by = 50), 
axis.labels=T)


zz = 
s_id    month   a  
1   jun 0  
2   jun 1  
3   jun 3  
4   jul 28  
5   jul 56  
6   jul 43  
7   jun 0  
8   jun 4900  
9   jun 8  
10  jul 12  
11  jul 56  
12  jul 92  
13  jul 4  
14  jul 0  
15  jul 0  
16  jun 356  
17  jun 0  
18  jun 49  
19  jun 2100  
20  jun 0  
21  jun 89

data = read.table(text = zz,header = TRUE)

0 个答案:

没有答案