get.histo {HistDAWass} | R Documentation |
Method get.histo
: show the distribution with bins
Description
This functon return a data.frame describing the histogram of a distributionH
object.
Usage
get.histo(object)
## S4 method for signature 'distributionH'
get.histo(object)
Arguments
object |
a |
Value
A matrix: the two columns contains the bounds of the histogram the third contains the probablity (or the relative frequency) of the bin.
Examples
D <- distributionH(x = c(1, 2, 3, 4), p = c(0, 0.2, 0.6, 1))
get.histo(D) # returns the histogram representation of D by a data.frame
[Package HistDAWass version 1.0.8 Index]