title | author | date | output |
---|---|---|---|
ReadMe |
Sreekanth Jujare |
Sunday, June 21, 2015 |
html_document |
Set the working directory to point to the directory 'UCI HAR Dataset' containing 'test' and 'train' folders along with the "activity_labels.txt", "features.txt", "features_info.txt" files.
- Merged the training and the test sets to create one data set.
- Extracted only the measurements on the mean and standard deviation for each measurement.
- Used descriptive activity names to name the activities in the data set
- Appropriately labeled the data set with descriptive variable names.
- Generated a second, indepedent tidy data set with the average of each variable for each activity and each subject.
- Loaded data from files "activity_labels.txt" and "features.txt".
- Selected only those columns that represented mean or standard deviation measurements from the data of "X_train.txt" file.
- Loaded data from "y_train.txt" file.
- Loaded data from "subject_train.txt" file.
- Generated descriptive activity labels from the data of "activity_labels.txt" and "y_train.txt"
- Clubbed the columns of the data generated in steps 2, 4 and 5 to generate trainset dataset.
- Repeated Steps 2-6 on testing data to generate testing dataset.
- Merged training and testing datasets to generate first complete dataset.
- Generated a second, indepedent tidy data set with the average of each variable for each activity and each subject.