How to Load Data set in R

Loading data into R software

{`To load data into R use
  >variable name <- read.table(“filename”) 
  `}

For example:

{`>hills <-read.table(“hills.txt”)`}
Loading data into R software

How to Load a .csv file in R

{`To load a file with .csv extension in R
  >variable name <- read.csv(“filename”) 
  `}

For example:

{`>hills <-read.csv(“tables.csv”)`}
How to Load a .csv file in R

NOTE:

Always ensure that the file you want to load is saved in your current working directory.

Learn R programming for Statistical Analysis