X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Freliability.q;h=dfb81367912a3bcd96a25aa00bb964145a98f0ab;hb=cb72db62c20ecab427229110820c5b053d0663c4;hp=681669d18999fdac3c5516c9815b9079aae99dfb;hpb=8f04b0ced35a66cfdebefbcb53c81979add36ca3;p=pspp-builds.git diff --git a/src/language/stats/reliability.q b/src/language/stats/reliability.q index 681669d1..dfb81367 100644 --- a/src/language/stats/reliability.q +++ b/src/language/stats/reliability.q @@ -381,9 +381,9 @@ run_reliability (struct casereader *input, struct dataset *ds, { - struct tab_table *tab = tab_create(1, 1, 0); + struct tab_table *tab = tab_create(1, 1); - tab_dim (tab, tab_natural_dimensions, NULL); + tab_dim (tab, tab_natural_dimensions, NULL, NULL); tab_flags (tab, SOMF_NO_TITLE ); tab_text_format (tab, 0, 0, 0, "Scale: %s", ds_cstr (&rel->scale_name)); @@ -425,10 +425,10 @@ reliability_statistics (const struct reliability *rel) int heading_columns = rol[rel->model].heading_cols; int heading_rows = rol[rel->model].heading_rows; - struct tab_table *tbl = tab_create (n_cols, n_rows, 0); + struct tab_table *tbl = tab_create (n_cols, n_rows); tab_headers (tbl, heading_columns, 0, heading_rows, 0); - tab_dim (tbl, tab_natural_dimensions, NULL); + tab_dim (tbl, tab_natural_dimensions, NULL, NULL); tab_title (tbl, _("Reliability Statistics")); @@ -468,10 +468,10 @@ reliability_summary_total (const struct reliability *rel) const int heading_rows = 1; const int n_rows = rel->sc[0].n_items + heading_rows ; - struct tab_table *tbl = tab_create (n_cols, n_rows, 0); + struct tab_table *tbl = tab_create (n_cols, n_rows); tab_headers (tbl, heading_columns, 0, heading_rows, 0); - tab_dim (tbl, tab_natural_dimensions, NULL); + tab_dim (tbl, tab_natural_dimensions, NULL, NULL); tab_title (tbl, _("Item-Total Statistics")); @@ -678,10 +678,10 @@ case_processing_summary (casenumber n_valid, casenumber n_missing, int heading_columns = 2; int heading_rows = 1; struct tab_table *tbl; - tbl = tab_create (n_cols, n_rows, 0); + tbl = tab_create (n_cols, n_rows); tab_headers (tbl, heading_columns, 0, heading_rows, 0); - tab_dim (tbl, tab_natural_dimensions, NULL); + tab_dim (tbl, tab_natural_dimensions, NULL, NULL); tab_title (tbl, _("Case Processing Summary"));