Created
June 27, 2019 11:16
-
-
Save Harshit1694/bfc073fa1c57767c99a0b8e49fdf7ef0 to your computer and use it in GitHub Desktop.
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