Displaying 6 results from an estimated 6 matches for "medlwd".
Did you mean:
medley
2005 Jul 22
0
boxplot() defaults {was "boxplot in extreme cases"}
...dentically looking boxplots?
>Also, the median should be emphasized more by default anyway.
>{The lattice function bwplot() does it by only drawing a large
> black ball as in Andy's example (and not drawing a line at all)}
>
>One possibility I'd see is to use a default 'medlwd = 3'
>either in boxplot() or in bxp(.) and hence, what you currently get by
>
> boxplot(list(x1=rep(c(0,1,2),c(10,20,40)), x2=rep(c(0,1,2),c(10,40,20))),
> medlwd=3)
>
>would become the default plotting in boxplot().
>Of course a smaller value "medlwd=2&q...
2010 Jul 07
3
Boxplots over a Scatterplot
...foram$logl,
ylab="log max size",
xlab="stage",
cex=.1,
xaxt="n",
axes=FALSE
)
axis(at=-3:1, side=2, pos=0)
axis(at=9:84, side=1, pos=-3)
#adds a boxplot
boxplot(foram$logl~foram$stage, data=foram,
outline=F, axes=FALSE, add=TRUE, col="gray82", medlwd=1)
--
View this message in context: http://r.789695.n4.nabble.com/Boxplots-over-a-Scatterplot-tp2281526p2281526.html
Sent from the R help mailing list archive at Nabble.com.
2007 Jun 19
1
: create a PDF file (text (print list) and grafics)
...t;special")
par(mfrow=c(1,2), oma=c(0,0,3,0),cex=0.5)
#Text field (????????????)
#print(qual_pesos)# is a list
#Image
hist(controlo$quope,axes=T,plot=T,col="gray",xlab=
"Quope",main="Histograma",lwd=2)
boxplot(controlo$quope,col="bisque",lty=3,medlty=1,medlwd=2.5,main=
"Boxplot")
mtext(regiao,cex=1.5,col="blue",adj=0.5,side=3,outer=TRUE)
dev.off()
There is other way to do the same more easily
Thanks in advance for helping me.
Best regards.
Atenciosamente,
Ana Patricia Martins
-------------------------------------------
Serv...
2009 Mar 05
0
(PR#13553) wishlist boxplot
...oxplot.R 2009-02-24 18:04:47.265625000 +0100
> +++ boxplot-new.R 2009-02-24 18:10:02.000000000 +0100
> @@ -148,7 +148,7 @@
> ## Median
> xysegments(xP(x, -wntch), stats[3L],
> xP(x, +wntch), stats[3L],
> - lty = medlty[i], lwd = medlwd[i], col = medcol[i])
> + lty = medlty[i], lwd = medlwd[i], col = medcol[i], lend=1)
> xypoints(x, stats[3L],
> pch = medpch[i], cex = medcex[i], col= medcol[i], bg =
> medbg[i])
> ## Whiskers
>
>
>
> Best wishes,
> Uwe Ligges...
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 :
2008 Aug 22
2
boxplot
Hi, I just made a boxplot but I want to change the thickness of the
line used for the median to look a little thinner. Could anyone please
help me figuring out the R-code to do it?
Thanks, I really appreciate it.
Suyan