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

tech.tablesaw.aggregate.CrossTab Maven / Gradle / Ivy

There is a newer version: 0.43.1
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package tech.tablesaw.aggregate;

import com.google.common.collect.TreeBasedTable;

import tech.tablesaw.api.CategoryColumn;
import tech.tablesaw.api.ColumnType;
import tech.tablesaw.api.DateColumn;
import tech.tablesaw.api.FloatColumn;
import tech.tablesaw.api.IntColumn;
import tech.tablesaw.api.Table;
import tech.tablesaw.columns.Column;

import java.time.LocalDate;

/**
 * Utilities for creating frequency and proportion cross tabs
 */
public final class CrossTab {

    public static Table xCount(Table table, Column column1, Column column2) {
        if (column1.type() == ColumnType.FLOAT || column2.type() == ColumnType.FLOAT) {
            throw new UnsupportedOperationException("X-tabs on FLOAT columns are not supported");
        }
        return xTabCount(table, column1, column2);
    }

    /**
     * Returns a table containing two-dimensional cross-tabulated counts for each combination of values in
     * {@code column1} and {@code column2}
     * 

* * @param table The table we're deriving the counts from * @param column1 A column in {@code table} * @param column2 Another column in {@code table} * @return A table containing the cross-tabs */ public static Table xTabCount(Table table, Column column1, Column column2) { Table t = Table.create("Crosstab Counts: " + column1.name() + " x " + column2.name()); t.addColumn(new CategoryColumn("")); Table temp = table.sortOn(column1.name(), column2.name()); int colIndex1 = table.columnIndex(column1.name()); int colIndex2 = table.columnIndex(column2.name()); com.google.common.collect.Table gTable = TreeBasedTable.create(); String a; String b; for (int row : temp) { a = temp.column(colIndex1).getString(row); b = temp.column(colIndex2).getString(row); Integer cellValue = gTable.get(a, b); Integer value = 0; if (cellValue != null) { value = cellValue + 1; } else { value = 1; } gTable.put(a, b, value); } for (String colName : gTable.columnKeySet()) { t.addColumn(new IntColumn(colName)); } t.addColumn(new IntColumn("total")); int[] columnTotals = new int[t.columnCount()]; for (String rowKey : gTable.rowKeySet()) { t.column(0).appendCell(rowKey); int rowSum = 0; for (String colKey : gTable.columnKeySet()) { Integer cellValue = gTable.get(rowKey, colKey); if (cellValue != null) { int colIdx = t.columnIndex(colKey); t.intColumn(colIdx).append(cellValue); rowSum += cellValue; columnTotals[colIdx] = columnTotals[colIdx] + cellValue; } else { t.intColumn(colKey).append(0); } } t.intColumn(t.columnCount() - 1).append(rowSum); } t.column(0).appendCell("Total"); int grandTotal = 0; for (int i = 1; i < t.columnCount() - 1; i++) { t.intColumn(i).append(columnTotals[i]); grandTotal = grandTotal + columnTotals[i]; } t.intColumn(t.columnCount() - 1).append(grandTotal); return t; } public static Table xTabCount(Table table, DateColumn column1, Column column2) { Table t = Table.create("CrossTab Counts"); t.addColumn(new CategoryColumn("value")); Table temp = table.sortOn(column1.name(), column2.name()); int colIndex2 = table.columnIndex(column2.name()); com.google.common.collect.Table gTable = TreeBasedTable.create(); LocalDate a; String b; for (int row : temp) { a = temp.dateColumn(column1.name()).get(row); b = temp.column(colIndex2).getString(row); Integer cellValue = gTable.get(a, b); Integer value = 0; if (cellValue != null) { value = cellValue + 1; } gTable.put(a, b, value); } for (String colName : gTable.columnKeySet()) { t.addColumn(new FloatColumn(colName)); } t.addColumn(new FloatColumn("total")); int[] columnTotals = new int[t.columnCount()]; for (LocalDate rowKey : gTable.rowKeySet()) { t.dateColumn(0).append(rowKey); int rowSum = 0; for (String colKey : gTable.columnKeySet()) { Integer cellValue = gTable.get(rowKey, colKey); if (cellValue != null) { int colIdx = t.columnIndex(colKey); t.intColumn(colIdx).append(cellValue); rowSum += cellValue; columnTotals[colIdx] = columnTotals[colIdx] + cellValue; } else { t.intColumn(colKey).append(0); } } t.intColumn(t.columnCount() - 1).append(rowSum); } t.column(0).appendCell("Total"); int grandTotal = 0; for (int i = 1; i < t.columnCount() - 1; i++) { t.intColumn(i).append(columnTotals[i]); grandTotal = grandTotal + columnTotals[i]; } t.intColumn(t.columnCount() - 1).append(grandTotal); return t; } /* public static Table xTabCount(Table table, String column1) { return Table.groupApply(table, column1, StaticUtils::count, column1); } *//* public static Table xApply(Table table, String groupColumnName, String valueColumnName, Function fun) { return Table.groupApply(table, valueColumnName, fun, groupColumnName); } private CrossTab() { } public static Table tablePercents(Table xTabCounts) { Table pctTable = new Table("Proportions"); CategoryColumn labels = new CategoryColumnFromCsv("labels"); pctTable.addColumn(labels); for (int i = 0; i < xTabCounts.rowCount(); i++) { labels.add(xTabCounts.column(0).getString(i)); } for (int i = 1; i < xTabCounts.columnCount(); i++) { Column column = xTabCounts.column(i); pctTable.addColumn(new FloatColumnFromCsv(column.name())); } long tableTotal = (long) xTabCounts.column(xTabCounts.columnCount() - 1).get(xTabCounts.rowCount() - 1); for (int i = 0; i < xTabCounts.rowCount(); i++) { Row row = xTabCounts.getRow(i); Row newRow = pctTable.getRow(i); for (int c = 1; c < xTabCounts.columnCount(); c++) { newRow.set(c, (long) (row.get(c)) / (double) tableTotal); } } return pctTable; } */ public static Table rowPercents(Table xTabCounts) { Table pctTable = Table.create("Crosstab Row Proportions: "); CategoryColumn labels = new CategoryColumn(""); pctTable.addColumn(labels); for (int i = 0; i < xTabCounts.rowCount(); i++) { labels.add(xTabCounts.column(0).getString(i)); } for (int i = 1; i < xTabCounts.columnCount(); i++) { Column column = xTabCounts.column(i); pctTable.addColumn(new FloatColumn(column.name())); } for (int i = 0; i < xTabCounts.rowCount(); i++) { float rowTotal = (float) xTabCounts.intColumn(xTabCounts.columnCount() - 1).get(i); for (int c = 1; c < xTabCounts.columnCount(); c++) { if (rowTotal == 0) { pctTable.floatColumn(c).append(Float.NaN); } else { pctTable.floatColumn(c).append((float) xTabCounts.intColumn(c).get(i) / rowTotal); } } } return pctTable; } public static Table tablePercents(Table xTabCounts) { Table pctTable = Table.create("Crosstab Table Proportions: "); CategoryColumn labels = new CategoryColumn(""); pctTable.addColumn(labels); int grandTotal = xTabCounts.intColumn(xTabCounts.columnCount() - 1).get(xTabCounts.rowCount() - 1); for (int i = 0; i < xTabCounts.rowCount(); i++) { labels.add(xTabCounts.column(0).getString(i)); } for (int i = 1; i < xTabCounts.columnCount(); i++) { Column column = xTabCounts.column(i); pctTable.addColumn(new FloatColumn(column.name())); } for (int i = 0; i < xTabCounts.rowCount(); i++) { for (int c = 1; c < xTabCounts.columnCount(); c++) { if (grandTotal == 0) { pctTable.floatColumn(c).append(Float.NaN); } else { pctTable.floatColumn(c).append((float) xTabCounts.intColumn(c).get(i) / grandTotal); } } } return pctTable; } public static Table columnPercents(Table xTabCounts) { Table pctTable = Table.create("Crosstab Column Proportions: "); CategoryColumn labels = new CategoryColumn(""); pctTable.addColumn(labels); // setup the labels for (int i = 0; i < xTabCounts.rowCount(); i++) { labels.add(xTabCounts.column(0).getString(i)); } // create the new cols for (int i = 1; i < xTabCounts.columnCount(); i++) { Column column = xTabCounts.column(i); pctTable.addColumn(new FloatColumn(column.name())); } // get the column totals int[] columnTotals = new int[xTabCounts.columnCount() - 1]; int totalRow = xTabCounts.rowCount() - 1; for (int i = 1; i < xTabCounts.columnCount(); i++) { columnTotals[i - 1] = xTabCounts.intColumn(i).get(totalRow); } // calculate the column pcts and update the new table for (int i = 0; i < xTabCounts.rowCount(); i++) { for (int c = 1; c < xTabCounts.columnCount(); c++) { if (columnTotals[c - 1] == 0) { pctTable.floatColumn(c).append(Float.NaN); } else { pctTable.floatColumn(c).append((float) xTabCounts.intColumn(c).get(i) / columnTotals[c - 1]); } } } return pctTable; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy