How to Plot Curves for Functions in R

Hongtao Hao / 2022-08-12


y <- function(x) {
  x^2
}

curve(y, from=1, to=50, xlab='x', ylab='y')
y <- function(x) {2^x}
curve(y, from=1, to=10, xlab="x", ylab="y")

The above codes are from https://stackoverflow.com/a/26091375.

#tutorial

Last modified on 2022-08-19