Displaying 1 result from an estimated 1 matches for "grp_exampl".
Did you mean:
grp_example
2012 Mar 12
2
How to create interrupted boxplot
...4.
How can I skip y-axis around 5 to 25, and expand 0-4 for this case. Also I
want keep the outlier in my boxplot.
I want my boxplot look like the second one, keep the outlier, and make an
interrupt of y-axis from 5 to 25.
Thanks,
Jianghong
Example = c( 0.00,0.33,0.75,3.00,2.50,0.50,2.00,33.00)
Grp_Example =c("A","A","A","B","B","B","B","B")
Example_Data= cbind(Example,Grp_Example)
attach(Example_Data)
boxplot(Example ~ Grp_Example,main=paste("Boxplot of Example"),
pars = list(boxwex = 0.25, staplewex = 0.25...