在R中绘制正弦曲线

时间:2016-11-10 15:29:39

标签: r plot gnuplot

如何在R中绘制通用 sin 曲线? 根据{{​​3}}的答案,我尝试了:

x <- seq(0,pi,length.out=100)
y <- sin(x)
plot(x,y,type="l")

this post

实际上我真正想要的是这张图,由gnuplot生成:

plot sin(x) linestyle 1

enter image description here

此外,我想知道为什么gnuplot生成图表,即使我没有为变量x分配任何值。它是否具有预先指定的值或其他内容?

2 个答案:

答案 0 :(得分:6)

pi只是正弦曲线的一半...添加更多pi以便您获得更多曲线......

x <- seq(0,8*pi,length.out=100)
y <- sin(x)
plot(x,y,type="l")

答案 1 :(得分:0)

plot(sin, 0, 2*pi)

改变乘数来改变“频率”。