Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laurenzgamper/gettingandcleaningdata
Getting and Cleaning Data Course Project
https://github.com/laurenzgamper/gettingandcleaningdata
Last synced: about 1 month ago
JSON representation
Getting and Cleaning Data Course Project
- Host: GitHub
- URL: https://github.com/laurenzgamper/gettingandcleaningdata
- Owner: laurenzgamper
- License: mit
- Created: 2015-01-13T07:38:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-13T08:30:02.000Z (almost 10 years ago)
- Last Synced: 2023-02-27T05:26:09.271Z (almost 2 years ago)
- Language: R
- Size: 238 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#Getting and Cleaning Data
This is a course project for the Coursera Course Getting and Cleaning Data. The program (run_analysis.R) does the following:
1. It merges the training and the test sets
2. It extracts the measurements on the mean and standard deviation for each measurement
3. It converts the acitivity IDs to descriptive activity names
4. It labels the data set with descriptive variable names
5. It computes the average for each acitivity and each subject for each columnRunning the script:
1. Get the [data](https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip) and place it in the main folder of the repository.
2. Run run_analyis.R
3. This produces a file called tidy_dataset.txt with the output of the program.Code book with description of the data:
[CodeBook.md](CodeBook.md)
Dataset used for this program:
[https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip](https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip)
Original Source of the dataset:
[http://archive.ics.uci.edu/ml/datasets/Human+Activity+Recognition+Using+Smartphones](http://archive.ics.uci.edu/ml/datasets/Human+Activity+Recognition+Using+Smartphones)