Difference between revisions of "Array.crosstab()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
 
 
Line 3: Line 3:
 
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
 
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
  
==Array.==
+
==Array.crosstab(RowSet, ColSet,PageSet,DataSet)==
 
Returns a simple cross tabulation of two or more factors. By default computes a frequency table of the factors unless an array of values and an aggregation function are passed.
 
Returns a simple cross tabulation of two or more factors. By default computes a frequency table of the factors unless an array of values and an aggregation function are passed.
  

Latest revision as of 03:19, 30 April 2020

Array.crosstab(RowSet, ColSet,PageSet,DataSet)

Returns a simple cross tabulation of two or more factors. By default computes a frequency table of the factors unless an array of values and an aggregation function are passed.

[[100,2,2],[101,4,5],[102,6,7]].crosstab()


[[100,2,2],[101,4,5],[102,6,7]].uncrosstab()

See Also

accumulatewith

across