Coursera "Getting and Cleaning Data" Course Project
The Assignment was completed using a single script, "run_analysis.R" which performs all the required tasks. In summary, the way the script works is:
- Subset the features of interest from the raw data (means and standard deviations)
- Read raw data from training set
- Read raw data from test set
- Merge training and test data into a single dataframe
- Add and reformat descriptive labels to activities
- Write dataframe to a file ("CleanData.txt")
- Create a second datafarme summarizing the mean values per activity and subject
- Write summarized data to a file ("SummaryData.txt")
The output files are plain text, the variable are described in the code book.