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

Updating graphics


We have seen how easy it is to create multi-panel plots using xyplot(), barchart() and other functions of lattice. We mentioned in the introduction that lattice graphics can be customized on the fly. Yet, we haven't taken that opportunity yet. In this section, we will see how lattice plots can be customized using the update() function. Note that the customizing can be done when creating the object as well. We will use another simple dataset for this purpose: the ChickWeight dataset. This dataset contains four attributes which describe the growth of chickens through time, with several diets; weight: the weight of the chicken, Time: the age of the chicken, Chick: the identifier of the chicken, and Diet: how the chicken was fed.

Our interest will focus on the relationship between the diet and growth (variations in weight through time).

xyplot(weight ~ Time | Diet, data=ChickWeight)

As can be seen in the figure below, chickens increase in weight through time, with all diets. It...