更改函数图的粒度以使图看起来平滑

Change granularity of function plot to make plot look smooth

使用 R plot 函数绘制另一个函数,如何增加粒度以使图形看起来平滑? IE。类似于 seq(by=.001)?

的东西
plot(sin, to=100)

尝试 plot(curve(sin, ...)),然后将 n= 设置为您想要的分辨率。

curve(sin, from=0, to=100)         # default, n=101
curve(sin, from=0, to=100, n=1001)