###Assignment Instructions: You should create an R script called run_analysis.R that does the following.
- Merges the training and the test sets to create one data set.
- Extracts only the measurements on the mean and standard deviation for each measurement.
- Uses descriptive activity names to name the activities in the data set
- Appropriately labels the data set with descriptive activity names.
- From the data set in step 4,Creates a second, independent tidy data set with the average of each variable for each activity and each subject.
CodeBook.md- Describes the experiment data and the steps taken to summarize the data.run_analysis.R- R script to merge, clean-up, transform, and summarize the experiment data.merged_dataset.txt' - Merged Training and Test Dataset file generated by therun_analysis.R` script.tidy_dataset.txt- Tidy Dataset file generated by therun_analysis.Rscript.README.md.UCI HAR Dataset- Directory having experiment data.
- Read through the CodeBook and the run_analysis.R script to get a general understanding of this project, the steps taken in the analysis, and the output file.
- Make sure the experiment data is downloaded and extracted to a folder in the project directory called
UCI HAR Dataset. - Run the
run_analysis.Rscript.