README-work
Raku Data::Reshapers
This Raku package has data reshaping functions for different data structures that are coercible to full arrays.
The supported data structures are:
Positional-of-hashes
Positional-of-arrays
The most important data reshaping provided by the package over those data structures are:
Cross tabulation,
cross-tabulateLong format conversion,
to-long-formatWide format conversion,
to-wide-formatJoin across (aka
SQL JOIN),join-acrossTranspose,
transpose
The first four operations are fundamental in data wrangling and data analysis; see [AA1, Wk1, Wk2, AAv1-AAv2].
(Transposing of tabular data is, of course, also fundamental, but it also can be seen as a basic functional programming operation.)
There are other reshaping functions for:
Flattening and tallying,
Simple and stratified (dataset) splitting
Taking, renaming, and deleting of table columns,
Table column separation
An overview is given in (some part of) the presentation "TRC 2022 Implementation of ML algorithms in Raku", [AAv4].
More detailed explanations of the data wrangling methodology and workflows is given in the article "Introduction to data wrangling with Raku", [AA2]. (And its Bulgarian version [AA3].)
This package is one of the translation targets of the interpreter(s) provided by the package "DSL::English::DataQueryWorkflows", [AAp2].
Usage examples
Cross tabulation
Making contingency tables -- or cross tabulation -- is a fundamental statistics and data analysis operation, [Wk1, AA1].
Here is an example using the
Titanic
dataset (that is provided by this package through the function get-titanic-dataset):
use Data::Reshapers;
my @tbl = get-titanic-dataset();
my $res = cross-tabulate( @tbl, 'passengerSex', 'passengerClass');
say $res;to-pretty-table($res);Long format
Conversion to long format allows column names to be treated as data.
(More precisely, when converting to long format specified column names of a tabular dataset become values in a dedicated column, e.g. "Variable" in the long format.)
my @tbl1 = @tbl.roll(3);
.say for @tbl1;.say for to-long-format( @tbl1 );my @lfRes1 = to-long-format( @tbl1, 'id', [], variablesTo => "VAR", valuesTo => "VAL2" );
.say for @lfRes1;Wide format
Here we transform the long format result @lfRes1 above into wide format --
the result has the same records as the @tbl1:
to-pretty-table( to-wide-format( @lfRes1, 'id', 'VAR', 'VAL2' ) );Transpose
Using cross tabulation result above:
my $tres = transpose( $res );
to-pretty-table($res, title => "Original");to-pretty-table($tres, title => "Transposed");Type system
Earlier versions of the package implemented a type "deduction" system. Currently, the type system is provided by the package "Data::TypeSystem", [AAp1].
The type system conventions follow those of Mathematica's Dataset -- see the presentation "Dataset improvements".
Here we get the Titanic dataset, change the "passengerAge" column values to be numeric, and show dataset's dimensions:
my @dsTitanic = get-titanic-dataset(headers => 'auto');
@dsTitanic = @dsTitanic.map({$_<passengerAge> = $_<passengerAge>.Numeric; $_}).Array;
dimensions(@dsTitanic)Here is a sample of dataset's records:
to-pretty-table(@dsTitanic.pick(5).List, field-names => <id passengerAge passengerClass passengerSex passengerSurvival>)Here is the type of a single record:
use Data::TypeSystem;
deduce-type(@dsTitanic[12])Here is the type of single record's values:
deduce-type(@dsTitanic[12].values.List)Here is the type of the whole dataset:
deduce-type(@dsTitanic)Here is the type of "values only" records:
my @valArr = @dsTitanic>>.values>>.Array;
deduce-type(@valArr)Here is the type of the string values only records:
my @valArr = delete-columns(@dsTitanic, 'passengerAge')>>.values>>.Array;
deduce-type(@valArr)TODO
DONE Simpler more convenient interface.
Currently, a user have to specify four different namespaces in order to be able to use all package functions.
TODO More extensive long format tests.
TODO More extensive wide format tests.
DONE Implement verifications for:
See the type system implementation -- it has all of functionalities listed here.
DONE Positional-of-hashes
DONE Positional-of-arrays
DONE Positional-of-key-to-array-pairs
DONE Positional-of-hashes, each record of which has:
Same keys
Same type of values of corresponding keys
DONE Positional-of-arrays, each record of which has:
Same length
Same type of values of corresponding elements
DONE Implement "nice tabular visualization" using Pretty::Table and/or Text::Table::Simple.
DONE Document examples using pretty tables.
DONE Implement transposing operation for:
hash of hashes
hash of arrays
array of hashes
array of arrays
array of key-to-array pairs
DONE Implement to-pretty-table for:
hash of hashes
hash of arrays
array of hashes
array of arrays
array of key-to-array pairs
DONE Implement join-across:
DONE inner, left, right, outer
DONE single key-to-key pair
DONE multiple key-to-key pairs
DONE optional fill-in of missing values
TODO handling collisions
DONE Implement semi- and anti-join
TODO Implement to long format conversion for:
TODO hash of hashes
TODO hash of arrays
TODO Speed/performance profiling.
TODO Come up with profiling tests
TODO Comparison with R
TODO Comparison with Python
TODO Type system.
DONE Base type (Int, Str, Numeric)
DONE Homogenous list detection
DONE Association detection
DONE Struct discovery
TODO Enumeration detection
DONE Dataset detection
List of hashes
Hash of hashes
List of lists
DONE Refactor the type system into a separate package.
DONE "Simple" or fundamental functions
flattentake-droptallyCurrently in "Data::Summarizers".
Can be easily, on the spot, "implemented" with
.BagHash.Hash.
References
Articles
[AA1] Anton Antonov, "Contingency tables creation examples", (2016), MathematicaForPrediction at WordPress.
[AA2] Anton Antonov, "Introduction to data wrangling with Raku", (2021), RakuForPrediction at WordPress.
[AA3] Anton Antonov, "Увод в обработката на данни с Raku", (2022), RakuForPrediction at WordPress.
[Wk1] Wikipedia entry, Contingency table.
[Wk2] Wikipedia entry, Wide and narrow data.
Functions, repositories
[AAf1] Anton Antonov, CrossTabulate, (2019), Wolfram Function Repository.
[AAf2] Anton Antonov, LongFormDataset, (2020), Wolfram Function Repository.
[AAf3] Anton Antonov, WideFormDataset, (2021), Wolfram Function Repository.
[AAf4] Anton Antonov, RecordsSummary, (2019), Wolfram Function Repository.
[AAp1] Anton Antonov, Data::TypeSystem Raku package, (2023), GitHub/antononcube.
[AAp2] Anton Antonov, DSL::English::DataQueryWorkflows Raku package, (2022-2024), GitHub/antononcube.
Videos
[AAv1] Anton Antonov, "Multi-language Data-Wrangling Conversational Agent", (2020), YouTube channel of Wolfram Research, Inc.. (Wolfram Technology Conference 2020 presentation.)
[AAv2] Anton Antonov, "Data Transformation Workflows with Anton Antonov, Session #1", (2020), YouTube channel of Wolfram Research, Inc..
[AAv3] Anton Antonov, "Data Transformation Workflows with Anton Antonov, Session #2", (2020), YouTube channel of Wolfram Research, Inc..
[AAv4] Anton Antonov, "TRC 2022 Implementation of ML algorithms in Raku, (2022), YouTube/@AAA4Prediction.