The data frame shape domain representing possible data frame shapes, defined as product domain of the ColNamesDomain for the columns names and IntervalDomain for the number of columns and rows.

interface DataFrameDomain {
    colnames: ColNamesDomain;
    cols: IntervalDomain;
    rows: IntervalDomain;
}

Properties

Properties

colnames: ColNamesDomain