[R] Accessing Max/Min Value of Density Function

Moshe Olshansky m_olshansky at yahoo.com
Tue Jun 17 05:01:57 CEST 2008


Try max(mydensity$x), max(mydensity$y), quantile(mydensity$x), etc.

See ?density


--- On Tue, 17/6/08, Edward Wijaya <ewijaya at gmail.com> wrote:

> From: Edward Wijaya <ewijaya at gmail.com>
> Subject: [R] Accessing Max/Min Value of Density Function
> To: r-help at r-project.org
> Received: Tuesday, 17 June, 2008, 12:16 PM
> Dear all,
> 
> Currently I have the following output
> 
> > mydensity <- density(x)
> > print(mydensity)
> 
>        x                 y
>  Min.   : -92.14   Min.   :0.000e+00
>  1st Qu.: 356.66   1st Qu.:5.530e-09
>  Median : 805.45   Median :4.681e-05
>  Mean   : 805.45   Mean   :5.564e-04
>  3rd Qu.:1254.24   3rd Qu.:3.370e-04
>  Max.   :1703.04   Max.   :5.541e-03
> 
> 
> How can I access the Max value of "x" or
> "y"?
> I tried this, but doesn't seem to work.
> 
> > print(mydensity$y.max)
> NULL
> 
> I expect it to give "5.541e-03" as output.
> 
> Please advice.
> 
>  - E.W.
> 
> ______________________________________________
> R-help at 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.



More information about the R-help mailing list