[R] Numeric data calculated in bwplot

2009-04-17 Thread Yuri Volchik

Hi,

i was wondering if there is a way to extract statistic calculated by the
function bwplot in numeric format, i.e. a list with values of borders mean
etc.
Going through the help i couldn't find it, and text of the function
itself(bwplot) is very long.

Thanks

-- 
View this message in context: 
http://www.nabble.com/Numeric-data-calculated-in-bwplot-tp23096219p23096219.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Numeric data calculated in bwplot

2009-04-17 Thread stephen sefick
library(lattice)
x - bwplot(voice.part ~ height, data=singer, xlab=Height (inches))
str(x)

I have not done this before, but the output of str should give you a
starting point for extracting numeric values contained in one of the
numerous lists.

hope this helps

Stephen Sefick

On Fri, Apr 17, 2009 at 8:03 AM, Yuri Volchik yuri.volc...@gmail.com wrote:

 Hi,

 i was wondering if there is a way to extract statistic calculated by the
 function bwplot in numeric format, i.e. a list with values of borders mean
 etc.
 Going through the help i couldn't find it, and text of the function
 itself(bwplot) is very long.

 Thanks

 --
 View this message in context: 
 http://www.nabble.com/Numeric-data-calculated-in-bwplot-tp23096219p23096219.html
 Sent from the R help mailing list archive at Nabble.com.

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.




-- 
Stephen Sefick

Let's not spend our time and resources thinking about things that are
so little or so large that all they really do for us is puff us up and
make us feel like gods.  We are mammals, and have not exhausted the
annoying little problems of being mammals.

-K. Mullis

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Numeric data calculated in bwplot

2009-04-17 Thread Deepayan Sarkar
On 4/17/09, Yuri Volchik yuri.volc...@gmail.com wrote:

  Hi,

  i was wondering if there is a way to extract statistic calculated by the
  function bwplot in numeric format, i.e. a list with values of borders mean
  etc.

See ?boxplot.stats

-Deepayan

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.