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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。