estmeansd (version 0.1.0)

print.qe.fit: Print method for objects of class "qe.fit"

Description

Print method for objects of class "qe.fit".

Usage

# S3 method for qe.fit
print(x, ...)

Arguments

x

object of class "qe.fit".

...

other arguments.

Value

No value is returned.

See Also

qe.fit

Examples

Run this code
# NOT RUN {
## Generate S2 summary data
set.seed(1)
n <- 100
x <- stats::rlnorm(n, 2.5, 1)
quants <- stats::quantile(x, probs = c(0.25, 0.5, 0.75))

## Fit distributions
res <- qe.fit(q1.val = quants[1], med.val = quants[2], q3.val = quants[3],
       n = n)
print(res)

# }

Run the code above in your browser using DataLab