[R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread Martin Batholdy
Hi, is there any way to change the width of the horizontal line of confidence intervals in the barplot2 function in the plotrix package (independent of the width of the bars)? example code: library(plotrix) # Example with confidence intervals and grid hh - t(VADeaths)[, 1] mybarcol - gray20

Re: [R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread Rolf Turner
There does not appear to be any such function as barplot2 in the current version (3.4-5) of the plotrix package. Moreover I can find no reference to such a function in the NEWS for plotrix. cheers, Rolf Turner On 01/23/2013 07:28 AM, Martin Batholdy wrote: Hi, is there any way

Re: [R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread David Winsemius
On Jan 22, 2013, at 10:28 AM, Martin Batholdy wrote: Hi, is there any way to change the width of the horizontal line of confidence intervals in the barplot2 function in the plotrix package (independent of the width of the bars)? example code: library(plotrix) # Example with

Re: [R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread Martin Batholdy
Ok, I have to apologize, I confused the packages. It's the function barplot2 from the gplots package! It calls itself an extenstion of barplot2 and has a ci.lwd argument. Might save you the time of doing what I thought might be needed, hacking te code. Unfortunately ci.lwd controls the

Re: [R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread David L Carlson
-help@r-project.org Subject: Re: [R] change confidence interval line length in barplot2 (plotrix package) Ok, I have to apologize, I confused the packages. It's the function barplot2 from the gplots package! It calls itself an extenstion of barplot2 and has a ci.lwd argument. Might save

Re: [R] change confidence interval line length in barplot2 (plotrix package)

2013-01-22 Thread Marc Schwartz
On Jan 22, 2013, at 2:41 PM, Martin Batholdy batho...@googlemail.com wrote: Ok, I have to apologize, I confused the packages. It's the function barplot2 from the gplots package! It calls itself an extenstion of barplot2 and has a ci.lwd argument. Might save you the time of doing what