print.fuzzylm {fuzzyreg} | R Documentation |
Prints the call and coefficients from the fuzzylm
object.
## S3 method for class 'fuzzylm'
print(x, ...)
x |
a |
... |
further arguments passed to or from other methods. |
No return value, called for side effects.
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