Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blog # 7 #122

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions 07/AkuokoOhene.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "S-A-C"
author: "Ohene Akuoko"
topic: "07"
layout: post
root: ../../../
---

The split- apply-combine method is simply the breaki down of larger datasets made up of multiple variables into multiple smaller datasets and data frames
that can be more easily updated and edited with the purpose of ultimately relationating these together with each other in a larger dataset.

We have seen such a method before in the concept of creating relational databases. The ERD in essence is designed to degrade larger data sets into more
manageable portions or tables that have relation with each other and functions can be appplied to query and summarize desired data

S-A-Cs have many advantages as oppposed to simply handling a "big data" set byits self. One advantage is the ease of use unlike in the looping technique
in basic R. The "plyr" package that these SACs use is much simpler and eliminates alot of unnecessary code increasing the ease of use.
(The SACs are also writtten in a more literate way) Another benefit in the plyr package of the SACs, is the way the data is manged and output in the puts out multiple forms of outputs while base R only outputs data frames and lists and not in a lists.