Performing Data Cleansing
DataFlow Cleansing Operators
The DataFlow operator library contains several prebuilt data cleansing operators. This topic covers each of those operators and provides details on how to use them.
Covered Data Cleansing Operations
Using the RemoveDuplicates Operator to Remove Duplicates
The
RemoveDuplicates operator removes duplicate rows based on a specified set of group keys. The "first" record of a key value group is pushed to the output. Other records with the same key values are ignored. The "first" record of a key group is determined by sorting all rows of each key group by the specified
SortKeys. If the
SortKeys are unspecified, then this will output an arbitrary row.
Code Example
This example uses the ratings data set to remove all duplicates of the "userID" field. It will keep the record with the oldest timestamp from each set of duplicates.
Using the RemoveDuplicates operator in Java
import static com.pervasive.datarush.types.TokenTypeConstant.INT;
import static com.pervasive.datarush.types.TokenTypeConstant.STRING;
import static com.pervasive.datarush.types.TokenTypeConstant.record;
import com.pervasive.datarush.graphs.LogicalGraph;
import com.pervasive.datarush.graphs.LogicalGraphFactory;
import com.pervasive.datarush.io.WriteMode;
import com.pervasive.datarush.operators.group.RemoveDuplicates;
import com.pervasive.datarush.operators.io.textfile.ReadDelimitedText;
import com.pervasive.datarush.operators.io.textfile.WriteDelimitedText;
import com.pervasive.datarush.schema.TextRecord;
import com.pervasive.datarush.types.RecordTokenType;
public class RemoveDuplicateRatings {
public static void main(String[] args) {
// Create an empty logical graph
LogicalGraph graph = LogicalGraphFactory.newLogicalGraph("RemoveDuplicates");
// Create a delimited text reader for the "ratings.txt" file
ReadDelimitedText reader = graph.add(new ReadDelimitedText("data/ratings.txt"));
reader.setFieldSeparator("::");
reader.setHeader(true);
RecordTokenType ratingsType = record(INT("userID"), INT("movieID"), INT("rating"), STRING("timestamp"));
reader.setSchema(TextRecord.convert(ratingsType));
// Remove duplicates of the userID field and
// keep the record with the lowest timestamp
RemoveDuplicates remDup = graph.add(new RemoveDuplicates());
remDup.setGroupKeys(new String []{"userID"});
remDup.setSortKeys("timestamp");
// Connect reader to remove duplicates
graph.connect(reader.getOutput(), remDup.getInput());
// Create a delimited text writer
WriteDelimitedText writer = graph.add(new WriteDelimitedText("results/dedup-ratings.txt", WriteMode.OVERWRITE));
writer.setFieldDelimiter("");
writer.setHeader(true);
writer.setWriteSingleSink(true); // want a single file output
// Connect remove duplicates to writer
graph.connect(remDup.getOutput(), writer.getInput());
// Compile and run the graph
graph.run();
}
}
Using the RemoveDuplicates operator in RushScript
var results = dr.removeDuplicates(data, {groupKeys:["userID"], sortKeys:["timestamp"]});
Properties
The
RemoveDuplicates operator provides the following properties.
Ports
The
RemoveDuplicates operator provides a single input port.
The
RemoveDuplicates operator provides a single output port.
Using the ReplaceMissingValues Operator to Replace Missing Values
The
ReplaceMissingValues operator replaces missing values in the input data according to the given replacement specifications provided. Each specification provides an action to take and specifies the affected fields.
Some actions require an initial first pass through the data to calculate the required column values such as the minimum value, maximum value, mean or most frequent value. If any of these actions are specified, the data will be read to calculate the required values.
The next pass of the data applies the replacements specified by using the calculated data. Alternatively an input port is provided that may be used to provide the statistics.
The order of the input data is preserved wherever possible. However, when using the action to skip records with missing data, records may be reordered. This is due to how the data is partitioned for parallelization.
A PMML model is created that contains statistics about the number of records skipped and the number of field values replaced. This model is similar to the one created by the
SummaryStatistics operator.
Code Example
This example below demonstrates replacing missing values in an input data set. It specifies the replacement rules using a list of
ReplaceSpecification objects.
Using the ReplaceMissingValues operator in Java
// Define the replacement specifications
List<ReplaceSpecification> specs = new ArrayList<ReplaceSpecification>();
specs.add(min("sepal_length"));
specs.add(max("sepal_width"));
specs.add(mean("petal_length"));
specs.add(constant("petal_width", "0.0"));
specs.add(freq("class"));
// Create the ReplaceMissingValues operator
ReplaceMissingValues replace = graph.add(new ReplaceMissingValues());
replace.setReplaceSpecifications(specs);
Using the ReplaceMissingValues operator in RushScript
// Define the replacement specifications
var replaceRules = [
ReplaceSpecification.min('sepal_length'),
ReplaceSpecification.max('sepal_width'),
ReplaceSpecification.mean('petal_length'),
ReplaceSpecification.constant('petal_width'),
ReplaceSpecification.freq('class'),
];
// Apply the replacement rules to the input data
var rmvResult = dr.replaceMissingValues( input, {replaceSpecifications: replaceRules} );
Properties
The
ReplaceMissingValues operator provides one property.
Ports
The
ReplaceMissingValues operator provides the following input ports.
The
ReplaceMissingValues operator provides a single output port.
Last modified date: 06/14/2024