This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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