| Date | Title | Type | ||
|---|---|---|---|---|
| 10/26/09 |
24822 - Changing the Numeric Format of PROC FREQ Output This sample describes how to change these defaults for the three main types of PROC FREQ output: one-way tables, multiway tables in list format, and multiway tables presented as crosstabulations. http://support.sas.com/kb/24/822.html, 21KB |
Sample | ||
| 3/25/09 |
34979 - Automatically run Fisher's exact test when the chi-square test might not be valid This MACRO automatically performs Fisher's exact test whenever the chi-square test results in a WARNING message regarding the validity of the test in an RxC table because of a large number of cells with expected count ... http://support.sas.com/kb/34/979.html, 40KB |
Sample | ||
| 2/26/09 |
22991 - How can I remove the title "The FREQ Procedure" from my FREQ procedure output? You can remove "The FREQ Procedure" title from your FREQ procedure output by inserting the ODS NOPROCTITLE statement before the PROC FREQ statement. ODS NOPROCTITLE; PROC FREQ; TABLE X*Y; RUN; After you have ... http://support.sas.com/kb/22/991.html, 17KB |
Usage Note | ||
| 12/9/08 |
25674 - Documentation Example 4 for PROC CLUSTER /****************************************************************/ S A S S A M P L E L I B R A R Y NAME: clusex4 http://support.sas.com/kb/25/674.html, 25KB |
Sample | ||
| 7/22/08 |
32711 - How can I get an exact CMH test? The CMH option in the TABLES statement of PROC FREQ is often used to obtain a test of the association between the row and column variables adjusted for the strata. Only asymptotic CMH tests, requiring large overall ... http://support.sas.com/kb/32/711.html, 49KB |
Usage Note | ||
| 1/4/08 |
22981 - Is there away to format the statistics in the cross-table produced by PROC FREQ? Beginning with Release 8.1 of SAS, there is an undocumented FORMAT= TABLES statement option that allows you to specify a format for the statistics. This option was added because there is no crosstabfreq ODS template ... http://support.sas.com/kb/22/981.html, 17KB |
Usage Note | ||
| 12/7/07 |
22563 - How do I get a goodness-of-fit chi-square test on a one-way table? Beginning in SAS 6.12, the CHISQ, TESTP=, and TESTF= options in PROC FREQ provide an asymptotic Pearson chi-square test. The CHISQ option provides a test of equal cell probabilities. An exact test is available by ... http://support.sas.com/kb/22/563.html, 17KB |
Usage Note | ||
| 12/3/07 |
23129 - How can I replace the variable name with the variable label in a one-way table in the FREQ procedure? Currently the label is being placed under the procedure title. You can use the TEMPLATE procedure to modify the ONEWAYFREQS template so that the variable label appears as the header for the column rather than the variable name. http://support.sas.com/kb/23/129.html, 17KB |
Usage Note | ||
| 11/30/07 |
22197 - How can I get the cumulative frequency and cumulative percent statistics in the data set created with the OUT= option in PROC FREQ? These cumulative statistics are dependent upon the sort order of the data set. We do not include them in the output data set because they would be incorrect if you resorted the data. To add them to the data set, ... http://support.sas.com/kb/22/197.html, 17KB |
Usage Note | ||
| 11/19/07 |
22201 - I have a two-way table in PROC FREQ that spans several pages. A lot of white space is left at the bottom of every page. I want PROC FREQ to fill an entire page with the table. When a table must span multiple pages, PROC FREQ determines how many total pages are required to print the table, assuming every page will be filled completely. Then, it calculates the number of rows and columns to ... http://support.sas.com/kb/22/201.html, 17KB |
Usage Note | ||