data<-read.table(file.choose(), header = T, sep = ",", dec = ".")#Importing the data | |
head(data) #Top observations present in the data | |
dim(data) #Check the dimensions of the data | |
summary(data) #Summarise the data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment