tidydata.txt file is the tidy data summarised from the data in https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip
It consists of the average values of 579 variables grouped by activities and subjects. With 6 activities and 30 subjects, there are
180 records in the tidydata.txt
Variables in the tidydata.txt are (in the order)
- Activity_Id: activity id which is described in the activity_labels.txt file
- Activity_label: the names of activities, i.e., walking, walking upstair, walking downstair, sitting, standing and laying
- Subject_Id: the identifier number of 30 volunteers
- TotalAcc_mean_X: the mean of total acceleration in the X direction
- TotalAcc_std_X: the standard deviation of total acceleration in the X direction
- TotalAcc_mean_Y: the mean of total acceleration in the Y direction
- TotalAcc_std_Y: the standard deviation of total acceleration in the Y direction
- TotalAcc_mean_Z: the mean of total acceleration in the Z direction
- TotalAcc_std_Z: the standard deviation of total acceleration in the Z direction
- BodyAcc_mean_X: the mean of body acceleration in the X direction
- BodyAcc_std_X: the standard deviation of body acceleration in the X direction
- BodyAcc_mean_Y: the mean of body acceleration in the Y direction
- BodyAcc_std_Y: the standard deviation of body acceleration in the Y direction
- BodyAcc_mean_Z: the mean of body acceleration in the Z direction
- BodyAcc_std_Z: the standard deviation of body acceleration in the Z direction
- BodyGyro_mean_X: the mean of body angular velocity in the X direction
- BodyAcc_std_X: the standard deviation of body angular velocity in the X direction
- BodyAcc_mean_Y: the mean of body angular velocity in the Y direction
- BodyAcc_std_Y: the standard deviation of body angular velocity in the Y direction
- BodyAcc_mean_Z: the mean of body angular velocity in the Z direction
- BodyAcc_std_Z: the standard deviation of body angular velocity in the Z direction
22-582: variable names and their descriptions are in the features.txt and features_infor.txt
Note that some variable names are coincident??? (check in the features.txt file)
end!