Reader small image

You're reading from  R Machine Learning By Example

Product typeBook
Published inMar 2016
Reading LevelIntermediate
Publisher
ISBN-139781784390846
Edition1st Edition
Languages
Tools
Right arrow

Getting the data


In Chapter 5, Credit Risk Detection and Prediction – Descriptive Analytics, we had analyzed the credit dataset from the German bank and performed several transformations already. We will be working on that transformed dataset in this chapter. We had saved the transformed dataset which you can check out by opening the credit_dataset_final.csv file. We will be doing all our analysis in R as usual. To load the data in memory, run the following code snippet:

> # load the dataset into data frame
> credit.df <- read.csv("credit_dataset_final.csv", header = TRUE, sep = ",")

This loads the dataset into a data frame which can now be readily accessed using the credit.df variable. Next, we will focus on data transformation and normalization.

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
R Machine Learning By Example
Published in: Mar 2016Publisher: ISBN-13: 9781784390846