當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 curve()用法及代碼示例


curve()R語言中的函數用於為參數中指定的方程繪製曲線。

用法: curve(expression, to, from, col)

參數:
expression:要彎曲
to, from:曲線繪製範圍
col:曲線顏色

範例1:


# R program to create a curve
  
# Creating curve using curve() function
curve(x ^ 2 + x + 5, -4, 4, col ="green", ylab ="y")

輸出:

範例2:


# R program to create a curve
  
# Creating curve using function
fun <- function(x) {x ^ 3 + 4}
curve(fun, -4, 4, col ="red", ylab ="y")

輸出:

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Create Line Curves for Specified Equations in R Programming – curve() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。