R for Data Science Cookbook
eBook - ePub

R for Data Science Cookbook

Yu-Wei, Chiu (David Chiu)

Partager le livre
  1. 452 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

R for Data Science Cookbook

Yu-Wei, Chiu (David Chiu)

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

Over 100 hands-on recipes to effectively solve real-world data problems using the most popular R packages and techniquesAbout This Book‱ Gain insight into how data scientists collect, process, analyze, and visualize data using some of the most popular R packages‱ Understand how to apply useful data analysis techniques in R for real-world applications‱ An easy-to-follow guide to make the life of data scientist easier with the problems faced while performing data analysisWho This Book Is ForThis book is for those who are already familiar with the basic operation of R, but want to learn how to efficiently and effectively analyze real-world data problems using practical R packages.What You Will Learn‱ Get to know the functional characteristics of R language‱ Extract, transform, and load data from heterogeneous sources‱ Understand how easily R can confront probability and statistics problems‱ Get simple R instructions to quickly organize and manipulate large datasets‱ Create professional data visualizations and interactive reports‱ Predict user purchase behavior by adopting a classification approach‱ Implement data mining techniques to discover items that are frequently purchased together‱ Group similar text documents by using various clustering methodsIn DetailThis cookbook offers a range of data analysis samples in simple and straightforward R code, providing step-by-step resources and time-saving methods to help you solve data problems efficiently.The first section deals with how to create R functions to avoid the unnecessary duplication of code. You will learn how to prepare, process, and perform sophisticated ETL for heterogeneous data sources with R packages. An example of data manipulation is provided, illustrating how to use the "dplyr" and "data.table" packages to efficiently process larger data structures. We also focus on "ggplot2" and show you how to create advanced figures for data exploration.In addition, you will learn how to build an interactive report using the "ggvis" package. Later chapters offer insight into time series analysis on financial data, while there is detailed information on the hot topic of machine learning, including data classification, regression, clustering, association rule mining, and dimension reduction.By the end of this book, you will understand how to resolve issues and will be able to comfortably offer solutions to problems encountered while performing data analysis.Style and approachThis easy-to-follow guide is full of hands-on examples of data analysis with R. Each topic is fully explained beginning with the core concept, followed by step-by-step practical examples, and concluding with detailed explanations of each concept used.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que R for Data Science Cookbook est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  R for Data Science Cookbook par Yu-Wei, Chiu (David Chiu) en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Computer Science et Data Processing. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2016
ISBN
9781784392048
Édition
1
Sous-sujet
Data Processing

R for Data Science Cookbook


Table of Contents

R for Data Science Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
eBooks, discount offers, and more
Why subscribe?
Preface
What this book covers
What you need for this book
Who this book is for
Sections
Getting ready
How to do it

How it works

There's more

See also
Conventions
Reader feedback
Customer support
Downloading the example code
Downloading the color images of this book
Errata
Piracy
Questions
1. Functions in R
Introduction
Creating R functions
Getting ready
How to do it...
How it works...
There's more...
Matching arguments
Getting ready
How to do it...
How it works...
There's more...
Understanding environments
Getting ready
How to do it...
How it works...
There's more...
Working with lexical scoping
Getting ready
How to do it...
How it works...
There's more...
Understanding closure
Getting ready
How to do it...
How it works...
There's more...
Performing lazy evaluation
Getting ready
How to do it...
How it works...
There's more...
Creating infix operators
Getting ready
How to do it...
How it works...
There's more...
Using the replacement function
Getting ready
How to do it...
How it works...
There's more...
Handling errors in a function
Getting ready
How to do it...
How it works...
There's more...
The debugging function
Getting ready
How to do it...
How it works...
There's more...
2. Data Extracting, Transforming, and Loading
Introduction
Downloading open data
Getting ready
How to do it

How it works

There's more

Reading and writing CSV files
Getting ready
How to do it

How it works

There's more

Scanning text files
Getting ready
How to do it

How it works

There's more

Working with Excel files
Getting ready
How to do it

How it works

Reading data from databases
Getting ready
How to do it

How it works

There's more

Scraping web data
Getting ready
How to do it

How it works

There's more

Accessing Facebook data
Getting ready
How to do it

How it works

There's more

Working with twitteR
Getting ready
How to do it

How it works

There's more

3. Data Preprocessing and Preparation
Introduction
Renaming the data variable
Getting ready
How to do it

How it works

There's more

Converting data types
Getting ready
How to do it

How it works

There's more

Working with the date format
Getting ready
How to do it

How it works

There's more

Adding new records
Getting ready
How to do it

How it works

There's more

Filtering data
Getting ready
How to do it

How it works

There's more

Dropping data
Getting ready
How to do it

How it works

There's more

Merging data
Getting ready
How to do it

How it works

There's more

Sorting data
Getting ready
How to do it

How it works

There's more

Reshaping data
Getting ready
How to do it

How it works

There's more

Detecting missing data
Getting ready
How to do it

How it works

There's more

Imputing missing data
Getting ready
How to do it

How it works

There's more

4. Data Manipulation
Introduction
Enhancing a data.frame with a data.table
Getting ready
How to do it

How it works

There's more

Managing data with a data.table
Getting ready
How to do it

How it works

There's more

Performing fast aggregation with a data.table
Getting ready
How to do it

How it works

There's more

Merging large datasets with a data.table
Getting ready
How to do it

How it works

There's more

Subsetting and slicing data with dplyr
Getting ready
How to do it

How it works

There's more

Sampling data with dplyr
Getting ready
How to do it
...

Table des matiĂšres