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")
輸出:
相關用法
- R語言 colorRampPalette()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 word()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 signif()用法及代碼示例
- R語言 strtrim()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 gl()用法及代碼示例
- R語言 polygon()用法及代碼示例
- R語言 rep_len()用法及代碼示例
- R語言 rep.int()用法及代碼示例
- R語言 seq_len()用法及代碼示例
- R語言 seq.int()用法及代碼示例
- R語言 rgb()用法及代碼示例
- R語言 segments()用法及代碼示例
- R語言 topo.colors()用法及代碼示例
- R語言 cm.colors()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Create Line Curves for Specified Equations in R Programming – curve() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。