read csv in r

209

read csv in r -

data <- read.csv("input.csv")
print(data)

Import CSV Files into R Using read.csv() method -

# read the data from the CSV file
data <- read.csv("C:\\Personal\\IMS\\cricket_points.csv", header=TRUE)

# print the data variable (outputs as DataFrame)
data

Comments

Submit
0 Comments