-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadMe.txt
More file actions
16 lines (14 loc) · 785 Bytes
/
ReadMe.txt
File metadata and controls
16 lines (14 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Getting and Cleaning Data - Course Project
This is the course project for the Getting and Cleaning Data Coursera course.
The R script, 'Run_Analysis.R', does the following:
1. Download the dataset if it does not already exist in the working directory
2. Load the activity and feature info
3. Loads both the training and test datasets, keeping only those columns which
reflect a mean or standard deviation
4. Loads the activity and subject data for each dataset, and merges those
columns with the dataset
5. Merges the two datasets
6. Converts the 'activity' and 'subject' columns into factors
7. Creates a tidy dataset that consists of the average (mean) value of each
variable for each subject and activity pair.
8. Write the tid.dataset into a txt file.