How to import data and create a scatter plot in R?

I have 334 entries with two columns:

  • Column (1): Resolution
  • Column (2): Number of images with a specific resolution

How can I make a scatter plot in R with this data? Is there a way to import records, since it will take a long time to enter 334 records?

+6
source share
1 answer

If you don't know how to get data in R or create a scatterplot, it sounds like you are very new to R.

You might want to use a program that reaches out.

  • rstudio has a Workspace - import dataset ; I would recommend Rstudio, especially if you are very new to R.
  • Rcmdr also has GUI options for retrieving data in R

As always, Quick-R provides a useful starting point:

More generally, it looks like you need to spend some time with some introductory training materials on R. Here are my suggested launch points .

+12
source

Source: https://habr.com/ru/post/894371/


All Articles