Current location - Trademark Inquiry Complete Network - Overdue credit card - How to draw a scatter plot (data group display) using R language and add two linear and exponential fitting lines of the whole data at the same time?
How to draw a scatter plot (data group display) using R language and add two linear and exponential fitting lines of the whole data at the same time?

Using R to draw graphs is much more flexible than using EXCEL.

For scatter plots, just use plot() directly

For multi-category, in R it is multi-variable, use points() to add categories

Fitting Use fitlt for curves; - lm()

lines(fit)

To add text, use text()