All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datavec.dataframe.mapping.BooleanMapUtils Maven / Gradle / Ivy

Go to download

High-performance Java Dataframe with integrated columnar storage (fork of tablesaw)

There is a newer version: 0.9.1
Show newest version
package org.datavec.dataframe.mapping;

import org.datavec.dataframe.api.BooleanColumn;
import org.datavec.dataframe.columns.Column;

/**
 * An interface for mapping operations unique to Boolean columns
 */
public interface BooleanMapUtils extends Column {

    /*
     * TODO(lwhite): Replace this implementation with a roaring bitmap version
     */
    default BooleanColumn and(BooleanColumn... columns) {
        BooleanColumn newColumn = BooleanColumn.create("");
        BooleanColumn thisColumn = (BooleanColumn) this;
        for (int i = 0; i < this.size(); i++) {
            boolean booleanValue = thisColumn.get(i);
            if (!booleanValue) {
                newColumn.set(i, false);
            } else {
                boolean result = true;
                for (BooleanColumn booleanColumn : columns) {
                    result = booleanColumn.get(i);
                    if (!result) {
                        newColumn.set(i, false);
                        break;
                    }
                }
                newColumn.set(i, result);
            }
        }
        return newColumn;
    }

    default BooleanColumn or(BooleanColumn... columns) {
        BooleanColumn newColumn = BooleanColumn.create("");
        BooleanColumn thisColumn = (BooleanColumn) this;

        for (int i = 0; i < this.size(); i++) {
            boolean booleanValue = thisColumn.get(i);
            if (booleanValue) {
                newColumn.set(i, true);
            } else {
                boolean result = false;
                for (BooleanColumn booleanColumn : columns) {
                    result = booleanColumn.get(i);
                    if (result) {
                        newColumn.set(i, true);
                        break;
                    }
                }
                newColumn.set(i, result);
            }
        }
        return newColumn;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy