Last active
May 3, 2019 07:21
-
-
Save Harshit1694/1b748db8ab0db977c7837172c5b91b8d 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
#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