Using the R plot function to plot another function, how can I increase the granularity so that the graph looks smooth?  I.e. something analogous to seq(by=.001)?
plot(sin, to=100)
				Using the R plot function to plot another function, how can I increase the granularity so that the graph looks smooth?  I.e. something analogous to seq(by=.001)?
plot(sin, to=100)
				Copyright © 2021 Jogjafile Inc.

                        
Try
plot(curve(sin, ...)), and then setn=to your desired resolution.