Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/you-n-g/getting-and-cleaning-data
Peer Assessments
https://github.com/you-n-g/getting-and-cleaning-data
Last synced: about 21 hours ago
JSON representation
Peer Assessments
- Host: GitHub
- URL: https://github.com/you-n-g/getting-and-cleaning-data
- Owner: you-n-g
- Created: 2015-10-22T12:50:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-23T02:12:22.000Z (over 9 years ago)
- Last Synced: 2024-11-25T17:28:45.760Z (2 months ago)
- Language: R
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting and Cleaning Data Course Project
This is a repository for the course project of the online course Getting and Cleaning Data from Coursera.
This project contains one R script, `run_analysis.R`, which will calculate means per activity, per subject of the mean and Standard deviation of the Human Activity Recognition Using Smartphones Dataset Version 1.0. The data discription can be found [here](http://archive.ics.uci.edu/ml/datasets/Human+Activity+Recognition+Using+Smartphones) This dataset should be [downloaded](https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip ) and extracted directly into the project directory.
Once executed, the resulting dataset can be found at `./TidyData.txt`
For futher details, refer to [CodeBook.md](CodeBook.md)
## Required R Packages
The R package `reshape2` is required to run this script. This maybe installed with,
```{r}
install.package("tidyr")
install.package("dplyr")
```