<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Numberspeak</title>
	<atom:link href="http://numberspeak.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://numberspeak.wordpress.com</link>
	<description>Just another Wordpress.com weblog</description>
	<lastBuildDate>Fri, 08 Apr 2011 18:51:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='numberspeak.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Numberspeak</title>
		<link>http://numberspeak.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://numberspeak.wordpress.com/osd.xml" title="Numberspeak" />
	<atom:link rel='hub' href='http://numberspeak.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Saving PROC REG output in SAS dataset</title>
		<link>http://numberspeak.wordpress.com/2006/05/31/saving-proc-reg-output-in-sas-dataset/</link>
		<comments>http://numberspeak.wordpress.com/2006/05/31/saving-proc-reg-output-in-sas-dataset/#comments</comments>
		<pubDate>Wed, 31 May 2006 07:45:56 +0000</pubDate>
		<dc:creator>Sneha</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[SAS programming]]></category>

		<guid isPermaLink="false">https://numberspeak.wordpress.com/2006/05/31/saving-proc-reg-output-in-sas-dataset/</guid>
		<description><![CDATA[PROC REG does not provide an option of saving F statistics and p-values in an output data set. Although in real life, we often encounter scenarios where we need to do so. For example, we might want to perform some action only if a particular independent variable is turning out to be significant. Manual processing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=numberspeak.wordpress.com&amp;blog=218672&amp;post=7&amp;subd=numberspeak&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PROC REG does not provide an option of saving F statistics and p-values in an output data set. Although in real life, we often encounter scenarios where we need to do so. For example, we might want to perform some action only if a particular independent variable is turning out to be significant. Manual processing becomes impossible when you have hundreds of regression models being run.</p>
<p>The output delivery system(ODS) in SAS provides great flexibility in handling output. Here&#8217;s the code to save the p values produced by PROC REG into a SAS dataset.</p>
<pre><b>ods listing close;
ods output "Parameter Estimates"=&lt;output dataset name&gt;;
proc reg data=&lt;input dataset name&gt;;
model &lt;dependent var&gt; = &lt;independent variables&gt;;
run;
quit;
ods output close;
ods listing;</b></pre>
<p>Just make sure you dont specify the NOPRINT option in PROC REG as the ODS needs an output object.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/numberspeak.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/numberspeak.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/numberspeak.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/numberspeak.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/numberspeak.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=numberspeak.wordpress.com&amp;blog=218672&amp;post=7&amp;subd=numberspeak&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://numberspeak.wordpress.com/2006/05/31/saving-proc-reg-output-in-sas-dataset/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6173a816e9dbf938580c20b498cc5d6a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sneha</media:title>
		</media:content>
	</item>
		<item>
		<title>SAS floating point exception error</title>
		<link>http://numberspeak.wordpress.com/2006/05/30/sas-floating-point-exception-error/</link>
		<comments>http://numberspeak.wordpress.com/2006/05/30/sas-floating-point-exception-error/#comments</comments>
		<pubDate>Tue, 30 May 2006 12:24:45 +0000</pubDate>
		<dc:creator>Sneha</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[SAS programming]]></category>

		<guid isPermaLink="false">https://numberspeak.wordpress.com/2006/05/30/sas-floating-point-exception-error/</guid>
		<description><![CDATA[While using the high performance forecasting diagnose and engine(HPFDIAGNOSE and HPFENGINE) procedures in SAS/ETS, I have been bugged by this error for one full week. ERROR: Domain error. ERROR: Floating Point Exception. I am a novice at SAS programming and unfortunately I couldn&#39;t find any online help regarding this. Anyway, somehow I have figured out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=numberspeak.wordpress.com&amp;blog=218672&amp;post=6&amp;subd=numberspeak&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While using the high performance forecasting diagnose and engine(HPFDIAGNOSE and HPFENGINE) procedures in SAS/ETS, I have been bugged by this error for one full week.</p>
<p><font size="-1"><b>ERROR</b>: <b>Domain error</b>.<br />
<b>ERROR</b>: <b>Floating Point Exception.</b></font></p>
<p>I am a novice at SAS programming and unfortunately I couldn&#39;t find any online help regarding this. Anyway, somehow I have figured out one possible way that can fix this problem. Specifically in HPF diagnose, make sure that your history data has no &quot;.&quot; in any of the observations for the dependent variable. Apparently, comparing a numeric value with a &quot;.&quot; causes this problem.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/numberspeak.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/numberspeak.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/numberspeak.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/numberspeak.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/numberspeak.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=numberspeak.wordpress.com&amp;blog=218672&amp;post=6&amp;subd=numberspeak&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://numberspeak.wordpress.com/2006/05/30/sas-floating-point-exception-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6173a816e9dbf938580c20b498cc5d6a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sneha</media:title>
		</media:content>
	</item>
	</channel>
</rss>
