Skip to content

Instantly share code, notes, and snippets.

@Harshit1694
Last active May 3, 2019 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Harshit1694/1b748db8ab0db977c7837172c5b91b8d to your computer and use it in GitHub Desktop.
Save Harshit1694/1b748db8ab0db977c7837172c5b91b8d to your computer and use it in GitHub Desktop.
#Step 1 - Importing Data
#_______________________________________________________
#Importing the csv data
data<-read.csv(file.choose())
#Step 2 - Validate data for correctness
#______________________________________________________
#Count of Rows and columns
dim(data)
#View top 10 rows of the dataset
head(data,10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment