Import Data

#Eww
set.seed(1000)
data <- read.csv("C:/Users/akinp/Downloads/Activity One.csv", header = TRUE, sep = ",", stringsAsFactors = FALSE)

Attach the data

attach(data)

Report the column names of the data

column_names <- colnames(data)

Display the column names

print(column_names)
## [1] "X"  "x1" "x2" "y"