forked from antononcube/MathematicaForPrediction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CrossTabulate.m
378 lines (273 loc) · 13.9 KB
/
CrossTabulate.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
(*
Cross tabulation implementation in Mathematica
Copyright (C) 2017 Anton Antonov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Written by Anton Antonov,
antononcube @ gmail . com,
Windermere, Florida, USA.
*)
(*
Mathematica is (C) Copyright 1988-2018 Wolfram Research, Inc.
Protected by copyright law and international treaties.
Unauthorized reproduction or distribution subject to severe civil
and criminal penalties.
Mathematica is a registered trademark of Wolfram Research, Inc.
*)
(* :Title: CrossTabulate *)
(* :Context: CrossTabulate` *)
(* :Author: Anton Antonov *)
(* :Date: 2017-10-13 *)
(* :Package Version: 1.0 *)
(* :Mathematica Version: *)
(* :Copyright: (c) 2017 Anton Antonov *)
(* :Keywords: cross tabulation, xtabs *)
(* :Discussion:
# Motivation
In statistics contingency tables are matrices used to show the co-occurrence of variable values
of multi-dimensional data. They are fundamental in many types of research.
This Mathematica package has several functions for the construction of contingency tables.
For extensive examples and explanations see [1].
# Usage example
titanicData = Flatten@*List @@@ ExampleData[{"MachineLearning", "Titanic"}, "Data"];
titanicData = DeleteCases[titanicData, {___, _Missing, ___}];
titanicColumnNames = Flatten@*List @@ ExampleData[{"MachineLearning", "Titanic"}, "VariableDescriptions"];
aTitanicColumnNames = AssociationThread[titanicColumnNames -> Range[Length[titanicColumnNames]]];
ctCounts = CrossTabulate[titanicData[[All, aTitanicColumnNames /@ {"passenger class", "passenger survival"}]]];
MatrixForm[#1, TableHeadings -> {#2, #3}] & @@ ctCounts
ctTotalAge = CrossTabulate[titanicData[[All, aTitanicColumnNames /@ {"passenger class", "passenger survival", "passenger age"}]]];
MatrixForm[#1, TableHeadings -> {#2, #3}] & @@ ctTotalAge
MatrixForm[ctTotalAge[[1]]/Normal[ctCounts[[1]]], TableHeadings -> Values[Rest[ctTotalAge]]]
# References
[1] Anton Antonov, "Contingency tables creation examples", MathematicaForPrediction at WordPress.
URL: https://mathematicaforprediction.wordpress.com/2016/10/04/contingency-tables-creation-examples/ .
Anton Antonov
October 2017
Windermere, FL, USA
*)
BeginPackage["CrossTabulate`"];
CrossTensorate::usage = "Finds the contingency co-occurrence values for multiple columns of a matrix \
using a formula specification. The first argument is the formula with the form \
Count == cn1 + cn2 + ... or cn0 == cn1 + cn2 + ...";
CrossTensorateSplit::usage = "Splits the result of CrossTensorate along a variable. The result can be \
shown with MatrixPlot.";
ToAssociationTrie::usage = "Converts a result of CrossTabulate or CrossTensorate into a nested Association. (A trie.)";
CrossTabulate::usage = "CrossTabulate[mat] finds the contingency table (of co-occurrence values) \
for the matrix argument mat that has two or three columns. \
If mat has three columns then the third column is expected to be a numerical vector. \
The result is an association by default; with the option setting \"Sparse\"->False the result a dataset. \
The result can be shown with MatrixPlot.";
CrossTabulationMatrixQ::usage = "Gives True if the argument is an Association with keys \
\"SparseMatrix\", \"RowNames\", and \"ColumnNames\".";
xtabsViaRLink::usage = "Calling R's function xtabs {stats} via RLink`.";
FromRXTabsForm::usage = "Transforms RObject result of xtabsViaRLink into an association.";
Begin["`Private`"];
(*===========================================================*)
(* CrossTensorate *)
(*===========================================================*)
Clear[CrossTensorate];
SyntaxInformation[CrossTabulate] = {"Arguments" -> {_, _, _.}};
SetAttributes[CrossTensorate, HoldFirst];
CrossTensorate::wcnames = "The third argument for the data column names is expected to be Automatic, \
an Association, or a list with length equal to the number of columns in the data." ;
CrossTensorate::wargs = "Wrong arguments.";
CrossTensorate::mcnames = "Not all formula column names are found in the column names specified by \
the third argument.";
CrossTensorate[formula_Equal, data_Dataset, columnNames_ : Automatic ] :=
Block[{colKeys},
colKeys = Normal[ data[[1]] ];
Which[
MatchQ[colKeys, _Association] && TrueQ[columnNames === Automatic],
CrossTensorate[ formula, Normal[data[All, Values]], Keys[colKeys] ],
MatchQ[colKeys, _Association],
CrossTensorate[ formula, Normal[data[All, Values]], columnNames ],
True,
CrossTensorate[ formula, Normal[data], columnNames ]
]
] /; Length[Dimensions[data]] == 2;
CrossTensorate[formula_Equal, data_?MatrixQ, columnNames_ : Automatic] :=
Block[{aColumnNames, idRules, formulaLHS, formulaRHS, t},
Which[
TrueQ[columnNames === Automatic],
aColumnNames =
AssociationThread[Range[Dimensions[data][[2]]] -> Range[Dimensions[data][[2]]]],
ListQ[columnNames] && Length[columnNames] == Dimensions[data][[2]],
aColumnNames = AssociationThread[columnNames -> Range[Dimensions[data][[2]]]],
AssociationQ[columnNames],
aColumnNames = columnNames,
True,
Message[CrossTensorate::wcnames];
Return[{}]
];
aColumnNames =
Join[ aColumnNames, AssociationThread[Range[Dimensions[data][[2]]] -> Range[Dimensions[data][[2]]]] ];
formulaLHS = Hold[formula][[1, 1]];
If[! TrueQ[formulaLHS === Count], formulaLHS = aColumnNames[formulaLHS]];
formulaRHS = ReleaseHold[Hold[formula] /. Plus -> List][[2]];
If[Length[Intersection[Keys[aColumnNames], formulaRHS]] < Length[formulaRHS],
Message[CrossTensorate::mcnames]; Return[{}]
];
formulaRHS = aColumnNames /@ formulaRHS;
idRules = Table[(t = Union[data[[All, i]]];Dispatch@Thread[t -> Range[Length[t]]]), {i, formulaRHS}];
Which[
TrueQ[formulaLHS === Count],
t = SparseArray @
Map[MapThread[Replace, {#[[1]], idRules}] -> #[[2]] &, Tally[data[[All, formulaRHS]]]],
IntegerQ[formulaLHS],
t = SparseArray @
Map[
MapThread[Replace, {#[[1]], idRules}] -> #[[2]] &,
Map[
{#[[1, 1 ;; -2]], Total[#[[All, -1]]]} &,
GatherBy[data[[All, Append[formulaRHS, formulaLHS]]], Most]]
],
True,
Message[CrossTensorate::wargs]; Return[{}]
];
Join[<|"XTABTensor" -> t|>, AssociationThread[ Keys[aColumnNames][[formulaRHS]] -> Map[Normal[#][[All, 1]] &, idRules]]]
] /; (AssociationQ[columnNames] || ListQ[columnNames] || TrueQ[columnNames === Automatic]);
(*===========================================================*)
(* CrossTensorateSplit *)
(*===========================================================*)
ClearAll[CrossTensorateSplit];
CrossTensorateSplit::nvar = "The second argument is expected to be a key in the first.";
CrossTensorateSplit[varName_] := CrossTensorateSplit[#, varName] &;
CrossTensorateSplit[xtens_Association, varName_] :=
Block[{aVars = KeyDrop[xtens, "XTABTensor"], varInd, perm},
If[! (MemberQ[Keys[xtens], varName] && (varName != "XTABTensor")),
Message[CrossTensorateSplit::nvar]; Return[{}]
];
varInd = Position[Keys[xtens], varName][[1, 1]] - 1;
perm = Range[2, Length[aVars]];
perm = Join[perm[[1 ;; varInd - 1]], {1}, perm[[varInd ;; -1]]];
Association@
MapThread[
Rule[#1, Join[<|"XTABTensor" -> #2|>, KeyDrop[aVars, varName]]] &,
{xtens[varName], # & /@ Transpose[xtens["XTABTensor"], perm]}]
];
(*===========================================================*)
(* ToAssociationTrie *)
(*===========================================================*)
Clear[ToAssociationTrie];
ToAssociationTrie[ct_] :=
Block[{},
ToAssociationTrie[ <|"XTABTensor" -> ct["SparseMatrix"], 1 -> ct["RowNames"], 2 -> ct["ColumnNames"]|> ]
] /; AssociationQ[ct] && Length[ Intersection[ Keys[ct], {"SparseMatrix", "RowNames", "ColumnNames"} ] ] == 3;
ToAssociationTrie[ct_] :=
Block[{dims, vals, i = -2},
dims = Values[Rest[ct]];
vals = Normal[ct["XTABTensor"]];
Fold[
Function[{val, dim},
Map[AssociationThread[dim -> #] &, val, {i--}]
],
vals,
Reverse@dims]
] /; MatchQ[ct, Association["XTABTensor" -> _, __]];
(*===========================================================*)
(* CrossTabulate *)
(*===========================================================*)
Clear[CrossTabulate];
SyntaxInformation[CrossTabulate] = {"Arguments" -> {_, OptionsPattern[]}};
Options[CrossTabulate] = {"Sparse" -> True};
CrossTabulate::narr = "The first argument is expected to be an array with two or three columns.
If present the third column is expected to be numerical.";
CrossTabulate[ data_Dataset, opts: OptionsPattern[] ] :=
Block[{colKeys},
colKeys = Normal[ data[[1]] ];
If[ MatchQ[colKeys, _Association],
CrossTabulate[ Normal[data[All, Values]], opts ],
CrossTabulate[ Normal[data], opts ]
]
] /; Length[Dimensions[data]] == 2;
CrossTabulate[ arr_?MatrixQ, opts: OptionsPattern[] ] :=
Block[{idRules, t},
idRules = Table[(t = Union[arr[[All, i]]]; Dispatch@Thread[t -> Range[Length[t]]]), {i, Min[2, Dimensions[arr][[2]]]}];
Which[
Dimensions[arr][[2]] == 2,
t = {
SparseArray[ Map[ MapThread[ Replace, {#[[1]], idRules}] -> #[[2]] &, Tally[arr]]],
Normal[#][[All, 1]]& /@ idRules
},
Dimensions[arr][[2]] == 3 && VectorQ[DeleteMissing[arr[[All, 3]]], NumericQ],
t = {
SparseArray[Map[MapThread[Replace, {#[[1]], idRules}] -> #[[2]] &, Map[{#[[1, 1 ;; 2]], Total[#[[All, 3]]]} &, GatherBy[arr, Most]]]],
Normal[#][[All, 1]]& /@ idRules
},
True,
Message[CrossTabulate::narr];
Return[{}]
];
If[ TrueQ[ OptionValue[CrossTabulate, "Sparse"] ],
<| "SparseMatrix" -> t[[1]], "RowNames" -> t[[2, 1]], "ColumnNames" -> t[[2, 2]] |>,
(* ELSE *)
Dataset@AssociationThread[t[[2, 1]], AssociationThread[t[[2, 2]], #] & /@ Normal[t[[1]]]]
]
];
(*===========================================================*)
(* CrossTabulationMatrixQ *)
(*===========================================================*)
Clear[CrossTabulationMatrixQ];
CrossTabulationMatrixQ[arg_Association] :=
Length[Intersection[Keys[arg], {"SparseMatrix", "RowNames", "ColumnNames"}]] == 3 && MatrixQ[arg["SparseMatrix"]];
CrossTabulationMatrixQ[___] := False;
(*===========================================================*)
(* xtabsViaRLink *)
(*===========================================================*)
Clear[xtabsViaRLink];
xtabsViaRLink::norlink = "R is not installed.";
xtabsViaRLink[data_?ArrayQ, columnNames : {_String ..}, formula_String, sparse : (False | True) : False] :=
Block[{},
If[Length[DownValues[RLink`REvaluate]] == 0,
Message[xtabsViaRLink::norlink];
Return[$Failed]
];
RLink`RSet["data", Transpose[data]];
If[ RLink`REvaluate["class(data)"][[1]] == "matrix",
RLink`REvaluate["dataDF <- as.data.frame( t(data), stringsAsFactors=F )"],
(*RLink`REvaluate["dataDF <- do.call( rbind.data.frame, data )"]*)
(*RLink`REvaluate["dataDF <- data.frame( matrix( unlist(data), nrow = " <> ToString[Length[data]] <> ", byrow = T), stringsAsFactors=FALSE)"]*)
RLink`REvaluate["dataDF <- as.data.frame( data, srtingsAsFactors=F )"]
];
RLink`RSet["columnNames", columnNames];
RLink`REvaluate["names(dataDF)<-columnNames"];
RLink`REvaluate["xtabs(" <> formula <> ", dataDF, sparse = " <> If[sparse, "T", "F"] <> ")"]
];
Clear[FromRXTabsForm];
FromRXTabsForm[rres_RLink`RObject] :=
Block[{},
<|"SparseMatrix" -> rres[[1]],
"RowNames" -> ("dimnames" /. rres[[2, 3]])[[1, 1]],
"ColumnNames" -> ("dimnames" /. rres[[2, 3]])[[1, 2]]|>
] /; (! FreeQ[rres, {"xtabs", "table"}, Infinity]);
(*===========================================================*)
(* UpValues *)
(*===========================================================*)
Unprotect[Association];
MatrixForm[x_Association /; (KeyExistsQ[x, "SparseMatrix"] || KeyExistsQ[x, "XTABTensor"]), opts___] ^:=
(MatrixForm[#1, Append[{opts}, TableHeadings -> Rest[{##}]]] & @@ x);
MatrixPlot[
x_Association /; (KeyExistsQ[x, "SparseMatrix"] || KeyExistsQ[x, "XTABTensor"]), opts___] ^:=
(MatrixPlot[#1,
Append[{opts}, FrameLabel -> {{Keys[x][[2]], None}, {Keys[x][[3]], None}}]] & @@ x);
Transpose[x_Association /; (KeyExistsQ[x, "SparseMatrix"] || KeyExistsQ[x, "XTABTensor"]), args___] ^:=
Block[{assoc = x},
If[ KeyExistsQ[x, "SparseMatrix"],
assoc["SparseMatrix"] = Transpose[x["SparseMatrix"], args],
assoc["XTABTensor"] = Transpose[x["XTABTensor"], args]
];
assoc["ColumnNames"] = x["RowNames"];
assoc["RowNames"] = x["ColumnNames"];
assoc
];
Protect[Association];
End[]; (* `Private` *)
EndPackage[]