The purpose of this project is to demonstrate your ability to collect, work with, and clean a data set. The goal is to prepare tidy data that can be used for later analysis. You will be graded by your peers on a series of yes/no questions related to the project. You will be required to submit: 1) a tidy data set as described below, 2) a link to a Github repository with your script for performing the analysis, and 3) a code book that describes the variables, the data, and any transformations or work that you performed to clean up the data called CodeBook.md. You should also include a README.md in the repo with your scripts. This repo explains how all of the scripts work and how they are connected.
One of the most exciting areas in all of data science right now is wearable computing - see for example this article . Companies like Fitbit, Nike, and Jawbone Up are racing to develop the most advanced algorithms to attract new users. The data linked to from the course website represent data collected from the accelerometers from the Samsung Galaxy S smartphone. A full description is available at the site where the data was obtained:
http://archive.ics.uci.edu/ml/datasets/Human+Activity+Recognition+Using+Smartphones
https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip
You should create one 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.
- Creates a second, independent tidy data set with the average of each variable for each activity and each subject.
Good luck!
The run_analysis code will read the 'Human Activity Recognition Using Smartphones Data Set' avaliable at https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip and saves as data.zip in current directory.
dataUrl <- "https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip"
dataName <- "data.zip"
if(!file.exists(dataName)){
download.file(dataUrl, dataName, method="curl")
}
The run_analysis code will zips the data.zip file in "UCI HAR Dataset" directory, if not unzipped earlier.
datasetPath <- "UCI HAR Dataset"
if(!file.exists(datasetPath)){
unzip(dataName)
}
The run_analysis code will reads the feature name from the "features.txt" file and extracts a vector of desired feature using the grep function.
feature_names <- read.table(paste(datasetPath, '/',"features.txt", sep=''))
desired_features <- grep("std|mean", feature_names$V2)
The run_analysis code will reads and merges both training and test features sets (/train/X_train.txt and /test/X_test.txt) and attaches the desired features column names to the features data frame.
train_features <- read.table(paste(datasetPath, '/', 'train', '/', 'X_train.txt', sep=''))
desired_train_features <- train_features[,desired_features]
test_features <- read.table(paste(datasetPath, '/', 'test', '/', 'X_test.txt', sep=''))
desired_test_features <- test_features[,desired_features]
total_features <- rbind(desired_train_features, desired_test_features)
colnames(total_features) <- feature_names[desired_features, 2]
The run_analysis code will extract the activity labels from activity_labels file.
activity_labels <- read.table(paste(datasetPath, '/',"activity_labels.txt", sep=''))
The run_analysis code will reads and merges both training and test activities (/train/y_train.txt and /test/y_test.txt).
train_activities <- read.table(paste(datasetPath, '/', 'train', '/', 'y_train.txt', sep=''))
test_activities <- read.table(paste(datasetPath, '/', 'test', '/', 'y_test.txt', sep=''))
total_activities <- rbind(train_activities, test_activities)
The run_analysis code will attaches the column names for the activities to the activity data frame using factor function
total_activities$activity <- factor(total_activities$V1, levels = activity_labels$V1, labels = activity_labels$V2)
The run_analysis code will reads and merges both training and test subjects for(/train/subject_train.txt and /test/subject_test.txt).
train_subjects <- read.table(paste(datasetPath, '/', 'train', '/', 'subject_train.txt', sep=''))
test_subjects <- read.table(paste(datasetPath, '/', 'test', '/', 'subject_test.txt', sep=''))
total_subjects <- rbind(train_subjects, test_subjects)
The run_analysis code will merges subject and activity data frame using cbind and assign column names
subjects_and_activities <- cbind(total_subjects, total_activities$activity)
colnames(subjects_and_activities) <- c("subject", "activity")
The run_analysis code will merges subject_and_activity data frame with the features data frame and creates the activity data frame or the tidy data frame
activity_frame <- cbind(subjects_and_activities, total_features)
The run_analysis code will calculate the mean of the features using aggregate function with by parameter (subject, activity) and generates a result_frame, assign names to frame
result_frame <- aggregate(activity_frame[,3:81], by = list(activity_frame$subject, activity_frame$activity), FUN = mean)
colnames(result_frame)[1:2] <- c("subject", "activity")
The run_analysis code will exports the final tidy data set to a 'tidyData.csv'.
write.table(result_frame, file="tidyData.csv", row.names = FALSE)