jamovi / jmv

jamovi for R
https://www.jamovi.org
56 stars 27 forks source link

Descriptives: add percentages to grouped frequencies #346

Closed raviselker closed 2 years ago

raviselker commented 2 years ago

The grouped frequencies are now displayed in a table where each variable's levels are displayed as column values instead of a crosstabs. (Cumalative) percentages are relative to the total number of cases:

 ──────────────────────────────────────────────────────── 
   dep    group    Counts    % of Total    Cumulative %   
 ──────────────────────────────────────────────────────── 
   1      a            13      13.00000        13.00000   
          b            10      10.00000        23.00000   
          c            10      10.00000        33.00000   
   2      a             7       7.00000        40.00000   
          b            15      15.00000        55.00000   
          c             6       6.00000        61.00000   
   3      a            13      13.00000        74.00000   
          b            10      10.00000        84.00000   
          c            16      16.00000       100.00000   
 ──────────────────────────────────────────────────────── 

Closes jamovi/jamovi#1157