mpoly (version 1.1.1)

round.mpoly: Round the coefficients of a polynomial

Description

Round the coefficients of an mpoly object.

Usage

# S3 method for mpoly
round(x, digits = 3)

Arguments

x

an mpoly object

digits

number of digits to round to

Value

the rounded mpoly object

See Also

mp()

Examples

Run this code
# NOT RUN {
p <- mp("x + 3.14159265")^4
p
round(p)
round(p, 0)

# }
# NOT RUN {
library(plyr)
library(ggplot2)
library(stringr)

n <- 101
s <- seq(-5, 5, length.out = n)

# one dimensional case
df <- data.frame(x = s)
df <- mutate(df, y = -x^2 + 2*x - 3 + rnorm(n, 0, 2))
qplot(x, y, data = df)
mod <- lm(y ~ x + I(x^2), data = df)
p <- as.mpoly(mod)
qplot(x, y, data = df) +
  stat_function(fun = as.function(p), colour = 'red')

p
round(p, 1)
qplot(x, y, data = df) +
  stat_function(fun = as.function(p), colour = 'red') +
  stat_function(fun = as.function(round(p,1)), colour = 'blue')


# }
# NOT RUN {
# }

Run the code above in your browser using DataLab