#Getting and Cleaning Data Course Project ReadMe
##The run_analysis.R script preforms all the data tiding as such:
- Downloads and unzips the data set in the working directory.
- Reads all the relevant files containg the accelerometer data and
the labels for the train and test data sets. - Finds the indices of the mean and std containing rows in the features.txt file
- Matches the features indices to both datasets
- Binds the subject number from the subject_test.txt and subject_train.txt files, the activity from
y_test.txt and y_train.txt files. - Gives a descriptive header based on the features.txt file
- Gives descriptive name instead of number to the activity based on activity_labels.txt
- Writes the clean data set into tidy_data.csv
- Avrages the data based on activity and subject
- Creates the tidy_mean_data.txt file to submit to coursera
- Splits the avearage data into 6 new tables containing the mean per subject per activity.
- Writes the 6 new tables into ACTIVITY.csv