print.fuzzylm: Prints Fuzzy Linear Regression Result

View source: R/print.fuzzylm.R

print.fuzzylmR Documentation

Prints Fuzzy Linear Regression Result

Description

Prints the call and coefficients from the fuzzylm object.

Usage

## S3 method for class 'fuzzylm'
print(x, ...)

Arguments

x

a fuzzylm object.

...

further arguments passed to or from other methods.

Value

No return value, called for side effects.

Examples

x <- rep(1:3, each = 5)
y <- c(rnorm(5, 1), rnorm(5, 2), rnorm(5, 3))
dat <- data.frame(x = x, y = y)
f <- fuzzylm(y ~ x, dat)
f

fuzzyreg documentation built on March 31, 2023, 9:19 p.m.