xxxxxxxxxx
read.csv(file = "yourfile.csv",
skip = 3, # How many lines you want to skip when you read it
header = FALSE, # Skip the header too
col.names = c("Student", "Score"), # Supply your own column names
stringsAsFactors = FALSE
)