简体   繁体   中英

How to plot curve properly in R?

I just started to learn R for my statistics class and I need to plot the curve with following parametrization:

I tried this, but not sure whether it's correct:

x <- seq(0,2*pi)
t <- choose(sin(2*x), cos(3*x) )
plot(t)

Because I get different curve on WolframAlpha

You can simply use curve() to plot mathematical expression in R.

curve(choose(sin(2*x), cos(3*x)), from=0, to=2*pi)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM