Back
What are the alternatives for drawing a simple curve for a function like
eq = function(x){x*x}
in R?
To plot a function curve in R, you can so the following:
eq = function(x){x*x}plot(eq(1:1000), type='l')
plot(eq(1:1000), type='l')
If you want to learn more about R programming watch this tutorial on Introduction to Data Science with R
31k questions
32.8k answers
501 comments
693 users