Book Image

Learning Predictive Analytics with R

By : Eric Mayor
Book Image

Learning Predictive Analytics with R

By: Eric Mayor

Overview of this book

This book is packed with easy-to-follow guidelines that explain the workings of the many key data mining tools of R, which are used to discover knowledge from your data. You will learn how to perform key predictive analytics tasks using R, such as train and test predictive models for classification and regression tasks, score new data sets and so on. All chapters will guide you in acquiring the skills in a practical way. Most chapters also include a theoretical introduction that will sharpen your understanding of the subject matter and invite you to go further. The book familiarizes you with the most common data mining tools of R, such as k-means, hierarchical regression, linear regression, association rules, principal component analysis, multilevel modeling, k-NN, Naïve Bayes, decision trees, and text mining. It also provides a description of visualization techniques using the basic visualization tools of R as well as lattice for visualizing patterns in data organized in groups. This book is invaluable for anyone fascinated by the data mining opportunities offered by GNU R and its packages.
Table of Contents (23 chapters)
Learning Predictive Analytics with R
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Exercises and Solutions
Index

Loading and discovering the lattice package


The lattice package is included in R version 3. We will first load the lattice package with the command line:

library(lattice)

We can now have a look at the objects that are included in the package. This requires listing the loaded packages, which can be done by typing:

search()

The output is displayed on the image below:

Packages in the R search path

The Lattice package is number 2 in this list. This position can vary, depending on whether you have loaded other packages as well.

The ls() function will allow us to inspect the content of lattice (or any other loaded package), as we have seen in Chapter 1, Setting GNU R for Predictive Modeling. Because the lattice package is in second position as just discussed, we type:

ls(2)

The output, composed of approximately 150 elements, is too long to be printed here. This illustrates the many graphing possibilities offered by lattice. We suggest you go through it on your screen. The idea is to get the feel of the...