May 2019
Beginner to intermediate
266 pages
5h 57m
English
Erroneous data is regarded as data that falls outside of what is accepted and what should be rejected by the system. In this section, we will focus on two major activities: reshaping and tidying up erroneous data. With the R programming language, this process can be achieved with the tidyr package. This package is designed specifically for data tidying and works well with manipulated data. It is important that you install this package if you have newly installed the R environment.
The following steps are implemented to include this package in the R environment:
> install.packages("tidyr")
From this, we get the following ...
Read now
Unlock full access