<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Analysis and Class Variables in Proc Univariate are Missing in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48586#M6294</link>
    <description>I've tried to use the ExcelXP tagset to run Proc Univariate with a class variable.  It gives me results but the analysis and class variables are not shown at all.  What can be done to fix this?</description>
    <pubDate>Wed, 24 Jun 2009 22:59:17 GMT</pubDate>
    <dc:creator>RHL</dc:creator>
    <dc:date>2009-06-24T22:59:17Z</dc:date>
    <item>
      <title>Analysis and Class Variables in Proc Univariate are Missing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48586#M6294</link>
      <description>I've tried to use the ExcelXP tagset to run Proc Univariate with a class variable.  It gives me results but the analysis and class variables are not shown at all.  What can be done to fix this?</description>
      <pubDate>Wed, 24 Jun 2009 22:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48586#M6294</guid>
      <dc:creator>RHL</dc:creator>
      <dc:date>2009-06-24T22:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis and Class Variables in Proc Univariate are Missing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48587#M6295</link>
      <description>You really need to share your SAS code and likely the generated SAS log output from your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 25 Jun 2009 03:42:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48587#M6295</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-06-25T03:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis and Class Variables in Proc Univariate are Missing</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48588#M6296</link>
      <description>Here's the SAS code I used.&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ODS tagsets.excelxp&lt;BR /&gt;
    path = "C:\Data\My Documents\Excel"&lt;BR /&gt;
   	file = "UnivSample.xls"  &lt;BR /&gt;
	style = custom2&lt;BR /&gt;
	options(sheet_interval = 'none'&lt;BR /&gt;
	        embedded_titles = 'yes'&lt;BR /&gt;
			embed_titles_once = 'yes'&lt;BR /&gt;
            sheet_name='SrvCont1'&lt;BR /&gt;
			default_column_width = '15'&lt;BR /&gt;
			center_horizontal = 'yes');&lt;BR /&gt;
&lt;BR /&gt;
title "Accounts Booked in 2008";&lt;BR /&gt;
&lt;BR /&gt;
proc univariate data=all;&lt;BR /&gt;
   class product;&lt;BR /&gt;
   var srvcont1 ;&lt;BR /&gt;
   title2 "Service Contract 1";&lt;BR /&gt;
  run;&lt;BR /&gt;
&lt;BR /&gt;
ODS tagsets.excelxp close;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Here's a copy of the partial output I got in Excel.  (I'm not sure if I could post the actual Excel file. )    Notice that the analysis variable srvcont1 is not seen anywhere, and neither is the product. There happens to be 3 products but I'm only showing the top 2. &lt;BR /&gt;
&lt;BR /&gt;
Accounts Booked in 2008			&lt;BR /&gt;
Service Contract 1			&lt;BR /&gt;
			&lt;BR /&gt;
Moments			&lt;BR /&gt;
N	93343	Sum Weights	93343&lt;BR /&gt;
Mean	879.39534	Sum Observations	82085399.2&lt;BR /&gt;
Std Deviation	769.234688	Variance	591722.005&lt;BR /&gt;
Skewness	0.20723914	Kurtosis	-1.1727747&lt;BR /&gt;
Uncorrected SS	1.27418E+11	Corrected SS	55232500000&lt;BR /&gt;
Coeff Variation	87.4731367	Std Error Mean	2.51778118&lt;BR /&gt;
			&lt;BR /&gt;
Basic Statistical Measures			&lt;BR /&gt;
Location		Variability	&lt;BR /&gt;
Mean	879.3953	Std Deviation	769.23469&lt;BR /&gt;
Median	955	Variance	591722&lt;BR /&gt;
Mode	0	Range	3665&lt;BR /&gt;
		Interquartile Range	1475	&lt;BR /&gt;
				&lt;BR /&gt;
Tests for Location: Mu0=0				&lt;BR /&gt;
Test	Statistic		p Value	&lt;BR /&gt;
Student's t	t	349.2739	Pr &amp;gt; |t|	&amp;lt;.0001&lt;BR /&gt;
Sign	M	29754.5	Pr &amp;gt;= |M|	&amp;lt;.0001&lt;BR /&gt;
Signed Rank	S	885350000	Pr &amp;gt;= |S|	&amp;lt;.0001&lt;BR /&gt;
				&lt;BR /&gt;
Quantiles (Definition 5)				&lt;BR /&gt;
Quantile	Estimate			&lt;BR /&gt;
100% Max	3665			&lt;BR /&gt;
99.00%	2300			&lt;BR /&gt;
95.00%	2190			&lt;BR /&gt;
90.00%	1995			&lt;BR /&gt;
75% Q3	1475			&lt;BR /&gt;
50% Median	955			&lt;BR /&gt;
25% Q1	0		&lt;BR /&gt;
10.00%	0		&lt;BR /&gt;
5.00%	0		&lt;BR /&gt;
1.00%	0		&lt;BR /&gt;
0% Min	0		&lt;BR /&gt;
			&lt;BR /&gt;
Extreme Observations			&lt;BR /&gt;
Lowest		Highest	&lt;BR /&gt;
Value	Obs	Value	Obs&lt;BR /&gt;
0	738641	3300	727662&lt;BR /&gt;
0	738640	3300	727755&lt;BR /&gt;
0	738639	3300	727781&lt;BR /&gt;
0	738638	3300	728039&lt;BR /&gt;
0	738637	3665	618008&lt;BR /&gt;
			&lt;BR /&gt;
Accounts Booked in 2008			&lt;BR /&gt;
Service Contract 1			&lt;BR /&gt;
			&lt;BR /&gt;
Moments			&lt;BR /&gt;
N	611373	Sum Weights	611373&lt;BR /&gt;
Mean	665.24175	Sum Observations	406710844&lt;BR /&gt;
Std Deviation	807.94359	Variance	652772.845&lt;BR /&gt;
Skewness	0.62615602	Kurtosis	-1.1758352&lt;BR /&gt;
Uncorrected SS	6.69648E+11	Corrected SS	3.99087E+11&lt;BR /&gt;
Coeff Variation	121.451125	Std Error Mean	1.03330353&lt;BR /&gt;
			&lt;BR /&gt;
Basic Statistical Measures			&lt;BR /&gt;
Location		Variability	&lt;BR /&gt;
Mean	665.2418	Std Deviation	807.94359&lt;BR /&gt;
Median	0	Variance	652773&lt;BR /&gt;
Mode	0	Range	3995&lt;BR /&gt;
		Interquartile Range	1435&lt;BR /&gt;
				&lt;BR /&gt;
Tests for Location: Mu0=0				&lt;BR /&gt;
Test	Statistic		p Value	&lt;BR /&gt;
Student's t	t	643.8009	Pr &amp;gt; |t|	&amp;lt;.0001&lt;BR /&gt;
Sign	M	134475	Pr &amp;gt;= |M|	&amp;lt;.0001&lt;BR /&gt;
Signed Rank	S	18080000000	Pr &amp;gt;= |S|	&amp;lt;.0001&lt;BR /&gt;
				&lt;BR /&gt;
Quantiles (Definition 5)				&lt;BR /&gt;
Quantile	Estimate			&lt;BR /&gt;
100% Max	3995			&lt;BR /&gt;
99.00%	2300			&lt;BR /&gt;
95.00%	2100			&lt;BR /&gt;
90.00%	1888			&lt;BR /&gt;
75% Q3	1435			&lt;BR /&gt;
50% Median	0			&lt;BR /&gt;
25% Q1	0			&lt;BR /&gt;
10.00%	0		&lt;BR /&gt;
5.00%	0		&lt;BR /&gt;
1.00%	0		&lt;BR /&gt;
0% Min	0		&lt;BR /&gt;
			&lt;BR /&gt;
Extreme Observations			&lt;BR /&gt;
Lowest		Highest	&lt;BR /&gt;
Value	Obs	Value	Obs&lt;BR /&gt;
0	611373	3895	326353&lt;BR /&gt;
0	611370	3900	155055&lt;BR /&gt;
0	611369	3995	147796&lt;BR /&gt;
0	611368	3995	152958&lt;BR /&gt;
0	611367	3995	330405</description>
      <pubDate>Thu, 25 Jun 2009 16:58:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Analysis-and-Class-Variables-in-Proc-Univariate-are-Missing/m-p/48588#M6296</guid>
      <dc:creator>RHL</dc:creator>
      <dc:date>2009-06-25T16:58:18Z</dc:date>
    </item>
  </channel>
</rss>

