Displaying 4 results from an estimated 4 matches for "bplt".
Did you mean:
bolt
2006 Jan 23
1
too-large notches in boxplot (PR #7690)
...g saying that the
notches have been truncated.
?? what should the behavior be ??
the diff is against the 11 Jan version of R 2.3.0
*** newboxplot.R 2006-01-23 14:32:12.000000000 -0500
--- oldboxplot.R 2006-01-23 14:29:29.000000000 -0500
***************
*** 84,98 ****
bplt <- function(x, wid, stats, out, conf, notch, xlog, i)
{
## Draw single box plot
- conf.ok <- TRUE
- if(!any(is.na(stats))) {
- ## check for overlap of notches and hinges
- if (notch && (stats[2]>conf[1] || stats[4]<conf[2])) {
-...
2010 Aug 04
2
barplot and x-axis font size
...x.axis and cex.lab but still fail. Here is my data and code:
> t(all)
0-100 100-150 150-200 200-250 250-300 300-350 350-400 400-620
obs_data 382.000 177.000 156.0000 93.0 69.0000 45.000 14.0000 15.0000
pre_gam 364.233 195.906 167.8515 95.1 63.2415 30.432 16.6425 17.5935
bplt <- barplot(t(all), col=c("blue","yellow"),beside=TRUE,xlab="Rainfall (mm)",
ylab="Frequency", main="Observed and predicted, Dec-Feb
Beec",ylim=c(0,400))
legend("topright",c("observed","predicted"),fill=c(&qu...
2001 May 26
1
boxplots
Was there ever a convenient method provided to add boxplots to the current
plot at specified x values? There was a question by Martin Maechler some
time ago here, but I could seem to find any satisfactory resolution of it.
I see that there is an add=T option to boxplot and bxp, but I don't see
how to set the x-values.
url: http://www.econ.uiuc.edu Roger Koenker
email roger at
2010 Feb 16
3
error : unused argument(s) when boxplot
Dear all,
I am a total beginner in R, so sorry if this is the wrong place. I am using R 2.10.1 on a Mac (Mac OS 10.6.2).
I have this small dataset :
growth sugar
75 C
72 C
73 C
61 F
67 F
64 F
62 S
63 S
I have no problem reading the table, or getting the summary, but if I try boxplot(growth~sugar, ylab="growth", xlab="sugar", data=Dataset), I have the following error :