You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an R-Script in R-Studio and name it "run_analysis.R"
Copy the entire script "run_analysis.R" from my repository and paste it in your newly created script, save the script
Script "run_analysis.R" is a function that takes location of folder "UCI HAR Dataset" on your computer as an input parameter and create working directory
Find the path to folder "UCI HAR Dataset" on your computer
Run function "run_analysis.R" by passing this path as input parameter to function
This function will create file TidyData.txt in the same "UCI HAR Dataset" folder
This is the required output file as described in project objective
To view the file run script: checkData <- read.table("TidyData.txt", header = TRUE); View(checkData)
Codebook.md has step-by-step explnation on code and work performed to achieve all project objectives
About
Coursera Course_Getting and Cleaning Data _ Course Project