Learn R Programming

propagate (version 1.0-5)

print.propagate: Printing function for 'propagate' objects

Description

Prints the statistical results obtained from propagate.

Usage

# S3 method for propagate
print(x, ...)

Arguments

x

an object returned from propagate.

...

other parameters for future methods.

Value

A printed summary containing the results from error propagation and Monte Carlo simulation.

Examples

Run this code
# NOT RUN {
EXPR1 <- expression(x^2 * sin(y))
x <- c(5, 0.01)
y <- c(1, 0.01)
DF1 <- cbind(x, y)
RES1 <- propagate(expr = EXPR1, data = DF1, type = "stat", 
                  do.sim = TRUE, verbose = TRUE)
RES1
# }

Run the code above in your browser using DataLab