7.data Preprocessing
7.data Preprocessing
Data cleaning is the process of removing incorrect data, incomplete data, and
inaccurate data from the datasets, and it also replaces the missing values. Here are
some techniques for data cleaning:
Handling Missing Values
Standard values like “Not Available” or “NA” can be used to replace the missing values.
Missing values can also be filled manually, but it is not recommended when that
dataset is big.
The attribute’s mean value can be used to replace the missing value when the data is
normally distributed where in in the case of non-normal distribution median value of
the attribute can be used.
While using regression or decision tree algorithms, the missing value can be replaced
by the most probable value.
Handling Noisy Data
The process of combining multiple sources into a single dataset. The Data integration
process is one of the main components of data management.
There are some problems to be considered during data integration.
Schema integration: Integrates metadata(a set of data that describes other data) from
different sources.
Entity identification problem: Identifying entities from multiple databases. For
example, the system or the user should know the student id of one database and
studentname of another database belonging to the same entity.
Detecting and resolving data value concepts: The data taken from different databases
while merging may differ. The attribute values from one database may differ from
another database. For example, the date format may differ, like “MM/DD/YYYY” or
“DD/MM/YYYY”.
Data Reduction
This process helps in the reduction of the volume of the data, which makes the
analysis easier yet produces the same or almost the same result.
This reduction also helps to reduce storage space. Some of the data reduction
techniques are dimensionality reduction, numerosity reduction, and data compression.
Dimensionality reduction: This process is necessary for real-world applications as the
data size is big. In this process, the reduction of random variables or attributes is done
so that the dimensionality of the data set can be reduced.
Combining and merging the attributes of the data without losing its original
characteristics. This also helps in the reduction of storage space, and computation time
is reduced. When the data is highly dimensional, a problem called the “Curse of
Dimensionality” occurs.
Numerosity Reduction: In this method, the representation of the data is made smaller
by reducing the volume. There will not be any loss of data in this reduction.
Data compression: The compressed form of data is called data compression. This
compression can be lossless or lossy. When there is no loss of information during
compression, it is called lossless compression. Whereas lossy compression reduces
information, but it removes only the unnecessary information.
Data Transformation
The change made in the format or the structure of the data is called data
transformation. This step can be simple or complex based on the requirements. There
are some methods for data transformation.
Smoothing: With the help of algorithms, we can remove noise from the dataset, which
helps in knowing the important features of the dataset. By smoothing, we can find
even a simple change that helps in prediction.
Aggregation: In this method, the data is stored and presented in the form of a
summary. The data set, which is from multiple sources, is integrated into with data
analysis description. This is an important step since the accuracy of the data depends
on the quantity and quality of the data. When the quality and the quantity of the data
are good, the results are more relevant.
Discretization: The continuous data here is split into intervals. Discretization reduces
the data size. For example, rather than specifying the class time, we can set an interval
like (3 pm-5 pm, or 6 pm-8 pm).
Normalization: It is the method of scaling the data so that it can be represented in a
smaller range. Example ranging from -1.0 to 1.0.