How to use R/Tutorials/Loading data

From Wikiversity

Jump to: navigation, search

This tutorial demonstrates how to load data in R.

[edit] Note

[edit] Direct loading

  • Given the data file data.txt located at <path>:
1970    45    63
1980    52    59
1990    59    52
2000    63    45
  • This data can easily be loaded into R using the following commands:
setwd("<path>")                # change working directory
data <- read.table("data.txt")  # load data

[edit] Loading csv