在r图中绘制正弦函数

时间:2014-04-23 08:35:52

标签: r

我想画一个简单的sin和这样的函数

enter image description here

在R情节中。

我正在使用此代码:

plot(sin, 0,  2*pi)
curve((4sin+(1/3)sin(3x))/pi, xlim = c(0, 2*pi), n = 1001, col = "blue", add = TRUE)

但是我收到了这个错误:

Error: unexpected symbol in "curve((4sin"

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

你不喜欢*符号吗?

plot(sin, 0,  2*pi)
curve(4*(sin(x)+(1/3)*sin(3*x))/pi, xlim = c(0, 2*pi), n = 1001, col = "blue", add = TRUE)