> ... the graph is too wide ... (from hist()). Ah, yes.
Try setting parameter xlim=c(0,1200) in the call to hist(). If that doesn't work, then catch the return value from hist(), and re-plot using barplot(). For example: temp <- hist(data[[5]], breaks=c(50*(seq(11)-1), 1000, max(data[[5]]))) barplot(temp$counts, xlim=c(0,600)) - tom blackwell - u michigan medical school - ann arbor - ______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help
