Skip to content

MarkSmithAU/GettingAndCleaningDataFinal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

title author date output
README.md
Mark Smith
30 March 2018
html_document

Coursera Getting and Cleaning Data - Final Assignment

The script provided has two purposes:

  • To produce a tidy data set (internally);
  • Take selected values (means and standard deviations) from the tidy set and take the average of them; and
  • Write the result to results.txt (tab separated).

This was developed on R 3.4.3 on Windows x64.

Requirements

How to run

source("run_analysis.R")
run_analysis()

To read the results:

library(dplyr)
library(data.table)
data <- tbl_df(fread("results.txt"))
summary(data)

Files

  • README.md This file
  • CodeBook.md The codebook describing the variables and the conversion process to generate the results.
  • run_analysis.R The main program.
  • results.txt Generated by the main program's final step.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages