Book Image

R Data Science Essentials

Book Image

R Data Science Essentials

Overview of this book

With organizations increasingly embedding data science across their enterprise and with management becoming more data-driven it is an urgent requirement for analysts and managers to understand the key concept of data science. The data science concepts discussed in this book will help you make key decisions and solve the complex problems you will inevitably face in this new world. R Data Science Essentials will introduce you to various important concepts in the field of data science using R. We start by reading data from multiple sources, then move on to processing the data, extracting hidden patterns, building predictive and forecasting models, building a recommendation engine, and communicating to the user through stunning visualizations and dashboards. By the end of this book, you will have an understanding of some very important techniques in data science, be able to implement them using R, understand and interpret the outcomes, and know how they helps businesses make a decision.
Table of Contents (15 chapters)
R Data Science Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Apriori analysis


In order to perform Apriori analysis, we need to load the arules package. If the package has not been installed, use the install.packages function.

We can then apply the Apriori algorithm on the transactional data. In the previous section we created two different transactional datasets. Let's apply the Apriori algorithm on this dataset:

rules1<- apriori(Adult,parameter = list(sup = 0.5, conf = 0.9,target="rules"));

The output is as follows:

From the preceding output, we can see that there are 52 rules in total that are generated. In the preceding function, we use a few additional sup and conf parameters, which are nothing but support and confidence, respectively. We will explore these parameters in detail but, for now, we have the rules generated based on the inputs. We can then inspect the rules generated using the inspect function as follows:

inspect(rules1)

The following is the output:

The output is continued here:

Note

Note that this is just a random snapshot from the...