Repo for Getting and Cleaning Data Course Project
the run_analysis.R file does the following
- import library dplyr, (it needs to be downloaded and installed first)
- download the zip file and extract the zip file
- getting the activity label and feature data into data frames
- import into data frame with train data, while using the vector in feature data frame as the column names
- do the same thing for test data.
- cbind the train data (only the columns with mean or std in the names), with subject and activity
- do the same thing for test data
- rbind the data frames generated in step 6 and 7
- export the data frame generated in step 8