<?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/"
	>

<channel>
	<title>From a Logical Point of View</title>
	<atom:link href="http://www.jiangtanghu.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jiangtanghu.com/blog</link>
	<description>Hello World by A SAS programmer</description>
	<lastBuildDate>Fri, 25 Dec 2009 14:29:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>From A Logical Point of View</title>
		<link>http://www.jiangtanghu.com/blog/2009/12/21/from-a-logical-point-of-view/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/12/21/from-a-logical-point-of-view/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 15:53:47 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[from a logical point of view]]></category>
		<category><![CDATA[quine]]></category>
		<category><![CDATA[robert mitchum]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/12/21/from-a-logical-point-of-view/</guid>
		<description><![CDATA[
This blog, “From A Logical Point of View”, is not supposed to be owned by a logician. Actually, the book, From A Logical Point of View, is a collection of logical and philosophical essays by W.V.Quine(1908-2000), an American philosopher and mathematician. 
A story about this book. From A Logical Point of View, was a calypso [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jiangtanghu.com/blog/wp-content/uploads/2009/12/QUIFRO.jpg"><img style="display: inline; border-width: 0px;" title="QUIFRO" src="http://www.jiangtanghu.com/blog/wp-content/uploads/2009/12/QUIFRO_thumb.jpg" border="0" alt="QUIFRO" width="158" height="244" /></a></p>
<p><span style="font-size: small;">This blog, “<a href="http://www.jiangtanghu.com/blog/">From A Logical Point of View</a>”, is not supposed to be owned by a logician. Actually, the book, <em><a href="http://www.amazon.com/Logical-Point-View-Logico-Philosophical-Revised/dp/0674323513">From A Logical Point of View</a></em>, is a collection of logical and philosophical essays by <a href="http://www.wvquine.org/">W.V.Quine</a>(1908-2000), an American philosopher and mathematician. </span></p>
<p><span style="font-size: small;">A story about this book. <em><a href="http://www.gugalyrics.com/ROBERT-MITCHUM-FROM-A-LOGICAL-POINT-OF-VIEW-LYRICS/411924/">From A Logical Point of View</a></em>, was a calypso song by <a href="http://en.wikipedia.org/wiki/Robert_Mitchum">Robert Mitchum</a>, an US actor, composer and singer. Quine enjoyed this music and used it as his new book, which is Quine’s best seller. Now I love this book and give the name to my blog from a logical point of view^.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/12/21/from-a-logical-point-of-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work With Oracle: A Quick Sheet for SAS Programmers</title>
		<link>http://www.jiangtanghu.com/blog/2009/12/04/work-with-oracle-a-quick-sheet-for-sas-programmers-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/12/04/work-with-oracle-a-quick-sheet-for-sas-programmers-2/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 01:33:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Database 10g Express Edition]]></category>
		<category><![CDATA[SAS SQL Pass-Through Facility]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/12/04/work-with-oracle-a-quick-sheet-for-sas-programmers-2/</guid>
		<description><![CDATA[(Note: All the followings are tested on Windows XP environment.)
0. Install Oracle Database 10g Express Edition
Fast (and free) to download, easy to deploy and simple to admin&#8211;for learning and testing purpose, Oracle Database 10g Express Edition (Oracle Database XE, a mini version of Oracle Database 10g Release 2) are strongly recommended:
0.1  Download it at [...]]]></description>
			<content:encoded><![CDATA[<p>(Note: All the followings are tested on Windows XP environment.)</p>
<p><strong>0. Install Oracle Database 10g Express Edition</strong></p>
<p>Fast (and free) to download, easy to deploy and simple to admin&#8211;for learning and testing purpose, Oracle Database 10g Express Edition (Oracle Database XE, a mini version of Oracle Database 10<em>g</em> Release 2) are strongly recommended:</p>
<p>0.1  Download it at <a href="http://www.oracle.com/technology/software/products/database/xe/index.html">its homepage</a>(206MB);</p>
<p>0.2 Install it following default settings;</p>
<p>0.3 Unlock accounts for HR and SCOTT. In a windows DOS prompt, using  the following scripts: </p>
<blockquote><pre>sqlplus sys/<span style="color:#ff0000;"><em>YourSysPassword</em> </span>as sysdba</pre>
<pre>alter user HR account unlock</pre>
<pre>alter user HR identified by <em><span style="color:#ff0000;">YourHRPassword</span></em></pre>
<pre>alter user SCOTT account unlock</pre>
<pre>alter user SCOTT identified by TIGER</pre>
</blockquote>
<pre>Or you can accomplish these tasks within the Oracle web application:</pre>
<blockquote><pre><a title="http://localhost:8081/apex" href="http://localhost:8081/apex">http://localhost:8081/apex</a></pre>
</blockquote>
<p><strong>1. Connect Oracle using SAS libname engine</strong></p>
<blockquote><p><em>libname SCOTT oracle user=&#8221;SCOTT&#8221; password=&#8221;TIGER&#8221; path=&#8217;xe&#8217; ;</em></p>
</blockquote>
<pre>Note: <em>xe</em> is the default path for Oracle Database XE.</pre>
<p><strong>2. Connect Oracle using SQL Procedure Pass-Through Facility</strong></p>
<blockquote><p><em>proc sql   ;<br />    connect to oracle as orcl  <br />    (user=&#8221;SCOTT&#8221;  password=&#8221;TIGER&#8221; path=&#8217;xe&#8217;);</em></p>
<p><em>    select * <br />    from connection to orcl  </em></p>
<p><span style="color:#ff0000;"><em>       (</em></span></p>
<p><span style="color:#ff0000;"><em>   <strong>SELECT …</strong></em></span></p>
<p><span style="color:#ff0000;"><em><strong><span class="Apple-style-span" style="font-weight: normal; ">    ) ;</span></strong></em></span></p>
<p><em>    disconnect from orcl;</p>
<p>quit;</em></p>
</blockquote>
<p>Note: 1) In this approach, Oracle, instead of SAS, processes the SQL statement (i.e., you use the more powerful and flexible Oracle SQL syntax instead of SAS Proc SQL procedure for querying. For more, se<em>e <a href="http://support.sas.com/documentation/cdl/en/lrcon/61722/HTML/default/a001044413.htm">SAS Doc</a></em>)<em>.</em></p>
<p><em>          </em>  2) Your Oracle SQL codes should be placed in the <span style="color:#ff0000;">RED</span> blocks, and end without a semicolon(;):</p>
<blockquote><p><em>select *</p>
<p>from  emp</em></p>
</blockquote>
<p>           3) Only basic Oracle SQL statements (<em>select, create table</em>, . . .)can pass through this facility.</p>
<p><strong>3. Load SAS datasets to Oracle database</strong></p>
<blockquote><p>proc copy in=sashelp<br />           out=scott;<br />    select class;<br />run;</p>
</blockquote>
<p><strong>4. Misc: Some differences between Oracle SQL and SAS Proc SQL</strong></p>
<p><strong>4.1  Table aliases</strong></p>
<p>Oracle: <em>from employees a;</em></p>
<p>SAS:<em> from employees a;</em> or</p>
<blockquote><p>    <em>from employees <span style="color:#ff0000;">as</span> a;</em></p>
</blockquote>
<p><strong>4.2 Column aliases</strong></p>
<p>Oracle: don’t use single quotation marks(‘’).</p>
<blockquote><p><em>select  job_id <span style="color:#ff0000;">as job</span>, job_id <span style="color:#ff0000;">job</span>, job_id <span style="color:#ff0000;">as &#8220;job&#8221; <span style="color:#000000;">,</span> <strike>job_id <span style="color:#ff0000;">as ‘job’</span></strike></span></em></p>
</blockquote>
<p>SAS:</p>
<blockquote><p><em>select  job_id <span style="color:#ff0000;">as job</span>,  job_id <span style="color:#ff0000;">&#8220;job&#8221;</span> ,  job_id  <span style="color:#ff0000;">&#8216;job&#8217;</span>,  <strike><span style="color:#ff0000;">job_id  job</span></strike></em></p>
</blockquote>
<p><strong>4.3  Literal Character Strings</strong></p>
<p>Oracle: Date and character literal values must be enclosed within single quotation marks(‘’).</p>
<p>SAS: Use both single and double quotation marks.</p>
<p><strong>4.4  Order the null value</strong></p>
<p>Oracle: Null values are displayed last for ascending sequences and first for descending sequences.</p>
<p>SAS: Null values are displayed first for ascending sequences and last for descending sequences.</p>
<p><strong>4.5  Nesting Group Functions</strong></p>
<blockquote><p><em>select   max(avg(salary))<br />from     employees<br />group by department_id</em></p>
</blockquote>
<p>SAS log:</p>
<blockquote><p>ERROR: Summary functions nested in this way are not supported.</p>
</blockquote>
<p>Optional approach for SAS:<br />
<blockquote>
<p><em>select max(avg) as max<br />from(<br />    select   avg(salary) as avg<br />    from     employees<br />    group by department_id )</em></p>
</blockquote>
<p><strong>4.6   row number(_n_)</strong></p>
<p>Oracle:</p>
<blockquote><p>select   <span style="color:#ff0000;">rownum</span><br />from     employees</p>
</blockquote>
<p>SAS:</p>
<blockquote><p>select   <span style="color:#ff0000;">monotonic()</span><br />from     employees</p>
</blockquote>
<p>Note: <span style="color:#ff0000;">monotonic()</span> is an undocumented function of SAS, <em>see<span class="Apple-style-span" style="font-style: normal; "><a href="http://www2.sas.com/proceedings/sugi29/040-29.pdf">http://www2.sas.com/proceedings/sugi29/040-29.pdf</a></span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/12/04/work-with-oracle-a-quick-sheet-for-sas-programmers-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run data mining codes following William Potts</title>
		<link>http://www.jiangtanghu.com/blog/2009/03/20/run-data-mining-codes-following-william-potts-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/03/20/run-data-mining-codes-following-william-potts-2/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 03:41:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[data mining]]></category>
		<category><![CDATA[SAS Enterprise Miner]]></category>
		<category><![CDATA[William Potts]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/03/20/run-data-mining-codes-following-william-potts-2/</guid>
		<description><![CDATA[FYI: SAS Enterprise Miner and SAS Text Miner  Procedures: Reference for SAS 9.1.3, see:
&#160;
http://support.sas.com/documentation/onlinedoc/miner/emtmsas913/listing.html
&#160;
This entry DOES exist in the SAS Support website, but it  can&#8217;t be found by any search engine or documentation tree view. You&#8217;re recommended to download these files immediately due to SAS&#8217;s  easy-dead hyperlinks.^-^ 
&#160;
ps.SAS Institute provides no support [...]]]></description>
			<content:encoded><![CDATA[<div><font face=Arial>FYI: <em>SAS Enterprise Miner and SAS Text Miner  Procedures: Reference for SAS 9.1.3</em>, see:</font></div>
<div><font face=Arial></font>&nbsp;</div>
<div><font face=Arial><a  href="http://support.sas.com/documentation/onlinedoc/miner/emtmsas913/listing.html">http://support.sas.com/documentation/onlinedoc/miner/emtmsas913/listing.html</a></font></div>
<div><font face=Arial></font>&nbsp;</div>
<div><font face=Arial>This entry DOES exist in the SAS Support website, but it  can&#8217;t be found by any search engine or documentation tree view. </font><font  face=Arial>You&#8217;re recommended to download these files immediately due to SAS&#8217;s  easy-dead hyperlinks.^-^ </font></div>
<div><font face=Arial></font>&nbsp;</div>
<div><font face=Arial>ps.SAS Institute provides no support for the use of  Enterprise Miner and Text Miner Procedures when they are invoked directly,  outside of the Enterprise Miner graphical user  interface.</font></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/03/20/run-data-mining-codes-following-william-potts-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Machine Learning Courses (Stanford) in YouTube</title>
		<link>http://www.jiangtanghu.com/blog/2009/03/02/free-machine-learning-courses-stanford-in-youtube-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/03/02/free-machine-learning-courses-stanford-in-youtube-2/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 02:28:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[data mining]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/03/02/free-machine-learning-courses-stanford-in-youtube-2/</guid>
		<description><![CDATA[FYI:
&#160;
http://www.youtube.com/view_play_list?p=A89DCFA6ADACE599
]]></description>
			<content:encoded><![CDATA[<div><font face=Arial>FYI:</font></div>
<div><font face=Arial></font>&nbsp;</div>
<div><font face=Arial><a  href="http://www.youtube.com/view_play_list?p=A89DCFA6ADACE599">http://www.youtube.com/view_play_list?p=A89DCFA6ADACE599</a></font></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/03/02/free-machine-learning-courses-stanford-in-youtube-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAS User Books and Data Mining Software Comparision: Quick Links</title>
		<link>http://www.jiangtanghu.com/blog/2009/02/17/sas-user-books-and-data-mining-software-comparision-quick-links-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/02/17/sas-user-books-and-data-mining-software-comparision-quick-links-2/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 06:55:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[data mining]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/02/17/sas-user-books-and-data-mining-software-comparision-quick-links-2/</guid>
		<description><![CDATA[
SAS Books Catalog(Jan,    2009)
Data    Mining Software 2009: Succesul Analyses at Affordable Prices(Nov.    2008, by mayato)

]]></description>
			<content:encoded><![CDATA[<ol>
<li><span style="font-family: Arial; font-size: x-small;"><a href="http://support.sas.com/publishing/pdfs/jan09.pdf">SAS Books Catalog(Jan,    2009)</a></span></li>
<li><span style="font-family: Arial; font-size: x-small;"><em><a href="http://www.mayato.com/index.php?option=com_content&amp;task=view&amp;id=105&amp;Itemid=96&amp;lang=en">Data    Mining Software 2009: Succesul Analyses at Affordable Prices</a></em>(Nov.    2008, by mayato)</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/02/17/sas-user-books-and-data-mining-software-comparision-quick-links-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basel II on Incremental Risk Charge(IRC): Quick Links</title>
		<link>http://www.jiangtanghu.com/blog/2009/02/12/basel-ii-on-incremental-risk-chargeirc-quick-links-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/02/12/basel-ii-on-incremental-risk-chargeirc-quick-links-2/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 01:37:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Quantitative finance]]></category>
		<category><![CDATA[basel II]]></category>
		<category><![CDATA[Incremental Risk Charge]]></category>
		<category><![CDATA[IRC]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/02/12/basel-ii-on-incremental-risk-chargeirc-quick-links-2/</guid>
		<description><![CDATA[
Basel Committee on Banking    Supervision(Jan, 2009). Guidelines for computing capital for incremental    default risk in the trading book. Consultative document.    January.
IRC    Comments by RiskMetrics

]]></description>
			<content:encoded><![CDATA[<ol>
<li><span style="font-family: Arial; font-size: x-small;"><a href="http://www.bis.org/publ/bcbs149.pdf">Basel Committee on Banking    Supervision(Jan, 2009). Guidelines for computing capital for incremental    default risk in the trading book. Consultative document.    January.</a></span></li>
<li><span style="font-family: Arial; font-size: x-small;"><a href="http://www.riskmetrics.com/sites/default/files/Research20090200.pdf">IRC    Comments</a> by RiskMetrics</span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/02/12/basel-ii-on-incremental-risk-chargeirc-quick-links-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FYI: Dashboard using SAS/Graph</title>
		<link>http://www.jiangtanghu.com/blog/2009/01/13/fyi-dashboard-using-sasgraph-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/01/13/fyi-dashboard-using-sasgraph-2/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 07:01:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[SASk]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/01/13/fyi-dashboard-using-sasgraph-2/</guid>
		<description><![CDATA[
see, http://support.sas.com/kb/26/134.html

Slider chart indicator:

SAS program version
stored process version
portlet version


Slider chart dashboard:

SAS program version
stored process version
portlet version


Bullet graph indicator:

SAS program version
stored process version
portlet version


Bullet graph dashboard:

SAS program version
stored process version
portlet version


Dial meter indicator:

SAS program version
stored process version
portlet version


Dial meter dashboard:

SAS program version
stored process version
portlet version


Bar chart indicator:

SAS program version
stored process version
portlet version


Bar chart dashboard:

SAS program version
stored [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://1.bp.blogspot.com/_qlX7zyUQhog/SWw8f0hrkmI/AAAAAAAABFs/kciTZXVbaTU/s1600-h/dashboard.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5290670179627012706" style="cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_qlX7zyUQhog/SWw8f0hrkmI/AAAAAAAABFs/kciTZXVbaTU/s320/dashboard.gif" border="0" alt="" /></a></p>
<p><span style="font-style: italic;">see</span>,<a href="http://support.sas.com/kb/26/134.html"> http://support.sas.com/kb/26/134.html</a></p>
<ul>
<li>Slider chart indicator:
<ul>
<li><a href="http://support.sas.com/kb/26104.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26114.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26124.html">portlet version</a></li>
</ul>
</li>
<li>Slider chart dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26105.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26115.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26125.html">portlet version</a></li>
</ul>
</li>
<li>Bullet graph indicator:
<ul>
<li><a href="http://support.sas.com/kb/26106.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26116.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26126.html">portlet version</a></li>
</ul>
</li>
<li>Bullet graph dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26107.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26117.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26127.html">portlet version</a></li>
</ul>
</li>
<li>Dial meter indicator:
<ul>
<li><a href="http://support.sas.com/kb/26108.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26118.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26128.html">portlet version</a></li>
</ul>
</li>
<li>Dial meter dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26109.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26119.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26129.html">portlet version</a></li>
</ul>
</li>
<li>Bar chart indicator:
<ul>
<li><a href="http://support.sas.com/kb/26110.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26120.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26130.html">portlet version</a></li>
</ul>
</li>
<li>Bar chart dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26111.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26121.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26131.html">portlet version</a></li>
</ul>
</li>
<li>Telesales dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26112.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26122.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26132.html">portlet version</a></li>
</ul>
</li>
<li>Web marketing analysis dashboard:
<ul>
<li><a href="http://support.sas.com/kb/26113.html">SAS program version</a></li>
<li><a href="http://support.sas.com/kb/26123.html">stored process version</a></li>
<li><a href="http://support.sas.com/kb/26133.html">portlet version</a></li>
</ul>
</li>
</ul>
<p>You would also like, <span style="font-style: italic;">Santa&#8217;s Dashboard</span>:<br />
<a href="http://jiangtanghu.blogspot.com/2008/12/santa-and-sas-again-santa-dashboard.html">http://jiangtanghu.blogspot.com/2008/12/santa-and-sas-again-santa-dashboard.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/01/13/fyi-dashboard-using-sasgraph-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R or SAS: Quick Links to the Recent Debates</title>
		<link>http://www.jiangtanghu.com/blog/2009/01/13/r-or-sas-quick-links-to-the-recent-debates-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/01/13/r-or-sas-quick-links-to-the-recent-debates-2/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 02:37:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[New York Times]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[SAS-L]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/01/13/r-or-sas-quick-links-to-the-recent-debates-2/</guid>
		<description><![CDATA[ 

Original post, 7 Jan, 2009
 
New York Times, Data Analysts Captivated by R&#8217;s  Power byAshlee Vance.


Key Point

The popularity of R at universities could threaten SAS Institute.


A Controversial Review by Anee Milley from SAS
 
We have customers who build engines for aircraft. I am happy they are not  using freeware when I get [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial;"> </span></p>
<div><strong><br />
Original post, 7 Jan, 2009</strong></div>
<div><strong> </strong></div>
<div>New York Times, <a href="http://www.nytimes.com/2009/01/07/technology/business-computing/07program.html" target="_blank"><em><span style="color: #669966;">Data Analysts Captivated by R&#8217;s  Power</span></em></a> by<a href="http://topics.nytimes.com/top/reference/timestopics/people/v/ashlee_vance/index.html?inline=nyt-per" target="_blank"><span style="color: #669966;">Ashlee Vance</span></a>.</div>
<div></div>
<div><strong><br />
Key Point</strong></div>
<div></div>
<div>The popularity of R at universities could threaten SAS Institute.</div>
<div></div>
<div><strong><br />
A Controversial Review by Anee Milley from SAS</strong></div>
<div><strong> </strong></div>
<div>We have customers who build engines for aircraft. I am happy they are not  using freeware when I get on a jet.</div>
<div></div>
<div><strong><br />
7 Jan, 2009, </strong><a href="http://www.listserv.uga.edu/cgi-bin/wa?A1=ind0901b&amp;L=sas-l#44" target="_blank"><span style="color: #669966;"><strong>SAS-L</strong></span></a></div>
<div></div>
<div>Discussion in <a href="http://www.listserv.uga.edu/cgi-bin/wa?A1=ind0901b&amp;L=sas-l#44" target="_blank"><span style="color: #669966;">SAS-L</span></a>, the most popular SAS mailing  list. Most voices call for the incorporate both R and SAS.</div>
<div></div>
<div><strong><br />
7 Jan, 2009, </strong><a href="http://groups.google.com/group/r-help-archive/browse_thread/thread/5502fdc60d063833/352fc11a5b833f12" target="_blank"><span style="color: #669966;"><strong>R-help</strong></span></a></div>
<div></div>
<div>Cheer for the victory of R.</div>
<div></div>
<div><strong><br />
8 Jan, 2009, </strong><a href="http://topics.nytimes.com/top/reference/timestopics/people/v/ashlee_vance/index.html?inline=nyt-per" target="_blank"><span style="color: #669966;"><strong>Ashlee  Vance</strong></span></a><strong>&#8217;s blog</strong></div>
<div></div>
<div><a href="http://bits.blogs.nytimes.com/2009/01/08/r-you-ready-for-r/" target="_blank"><em><span style="color: #669966;">R You Ready for R</span></em></a>, with  lots of comments</div>
<div></div>
<div><strong><br />
9 Jan, 2009, </strong><a href="http://groups.google.com/group/sasconsulting/topics" target="_blank"><span style="color: #669966;"><strong>SAS Consulting</strong></span></a></div>
<div></div>
<div><strong><br />
9 Jan, 2009, Anee Milley</strong></div>
<div><a href="http://blogs.sas.com/sascom/index.php?/archives/434-This-post-is-rated-R.html" target="_blank"><em><span style="color: #669966;">This Post Is Rated R</span></em></a>,  stating the viewpoints from SAS about open source software: support  and participant.</div>
<div></div>
<div>For more, see <a href="http://blogsearch.google.com/blogsearch?hl=en&amp;ie=UTF-8&amp;q=R+SAS&amp;btnG=Search+Blogs" target="_blank"><span style="color: #669966;">Google Blog  Search</span></a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/01/13/r-or-sas-quick-links-to-the-recent-debates-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Options Pricing Using SAS</title>
		<link>http://www.jiangtanghu.com/blog/2009/01/06/options-pricing-using-sas-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/01/06/options-pricing-using-sas-2/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 08:20:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[Black]]></category>
		<category><![CDATA[Black-Scholes]]></category>
		<category><![CDATA[Call]]></category>
		<category><![CDATA[Currency Option]]></category>
		<category><![CDATA[Exchange Option]]></category>
		<category><![CDATA[Financial Engineering]]></category>
		<category><![CDATA[Financial Functions]]></category>
		<category><![CDATA[Futures Option]]></category>
		<category><![CDATA[Garman-Kohlhagen]]></category>
		<category><![CDATA[Margrabe]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[Put]]></category>
		<category><![CDATA[SAS9.2]]></category>
		<category><![CDATA[Stock Option]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/01/06/options-pricing-using-sas-2/</guid>
		<description><![CDATA[There are some new financial functions in SAS9.2 Base, including 8 options pricing  functions(formerly in SAS Risk Dimension). These functions can compute the price of both call and put  options on different underlying assets (stock, futures, currency, and exchange  asset), using the following models respectively:


Black-Scholes model，the traditional stock options    [...]]]></description>
			<content:encoded><![CDATA[<p>There are some new financial functions in SAS9.2 Base, including 8 options pricing  functions(formerly in SAS Risk Dimension). These functions can compute the price of both call and put  options on different underlying assets (stock, futures, currency, and exchange  asset), using the following models respectively:</p>
<blockquote>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Black-Scholes" target="_blank"><span style="color: #669966;">Black-Scholes model</span></a>，the traditional stock options    pricing model, <em>see</em> <a href="http://riem.swufe.edu.cn/new/techupload/course/200742423245359181.pdf" target="_blank"><span style="color: #669966;">Fischer Black and Myron Scholes    (1973)</span></a> ;</li>
</ul>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Black_model" target="_blank"><span style="color: #669966;">Black model</span></a>，extension of    Black-Scholes model on futures option (also called Black-76 model)，<em>see </em><a href="http://math.ucalgary.ca/%7Eware/jc/black76_slides.pdf" target="_blank"><span style="color: #669966;">Fischer Black(1976)</span></a>;</li>
</ul>
<ul>
<li><a href="http://www.riskglossary.com/link/garman_kohlhagen_1983.htm" target="_blank"><span style="color: #669966;">Garman-Kohlhagen model</span></a>，pricing    model on foreign currency options，<em>see </em><a href="http://ideas.repec.org/a/eee/jimfin/v2y1983i3p231-237.html" target="_blank"><span style="color: #669966;">Mark Garman and Steven    Kohlhagen(1983)</span></a> ;</li>
</ul>
<ul>
<li><a href="http://www.sitmo.com/eq/671" target="_blank"><span style="color: #669966;">Margrabe model</span></a>，on exchange    options，<em>see </em><a href="http://www.er.ethz.ch/teaching/Margrabe_Option.pdf" target="_blank"><span style="color: #669966;">William Margrabe(1978)</span></a>.</li>
</ul>
</blockquote>
<table border="0" cellspacing="0" cellpadding="2" width="473">
<tbody>
<tr>
<td width="137" valign="top">Model</td>
<td width="103" valign="top">Underlying</td>
<td width="119" valign="top">Call</td>
<td width="112" valign="top">Put</td>
</tr>
<tr>
<td width="134" valign="top">Black model</td>
<td width="104" valign="top">Futures</td>
<td width="120" valign="top">BLACK<span style="color: #ff0000;">CL</span>PRC</td>
<td width="112" valign="top">BLACK<span style="color: #ff0000;">PT</span>PRC</td>
</tr>
<tr>
<td width="133" valign="top">Black-Scholes model</td>
<td width="105" valign="top">Stock</td>
<td width="121" valign="top">BLKSH<span style="color: #ff0000;">CL</span>PRC</td>
<td width="112" valign="top">BLKSH<span style="color: #ff0000;">PT</span>PRC</td>
</tr>
<tr>
<td width="132" valign="top">Garman-Kohlhagen model</td>
<td width="105" valign="top">Currency</td>
<td width="122" valign="top">GARKH<span style="color: #ff0000;">CL</span>PRC</td>
<td width="112" valign="top">GARKH<span style="color: #ff0000;">PT</span>PRC</td>
</tr>
<tr>
<td width="133" valign="top">Margrabe model</td>
<td width="105" valign="top">Exchange</td>
<td width="122" valign="top">MARGR<span style="color: #ff0000;">CL</span>PRC</td>
<td width="112" valign="top">MARGR<span style="color: #ff0000;">PT</span>PRC</td>
</tr>
</tbody>
</table>
<ul>
<li>BLACKCLPRC: calculates the call price for European options on futures, based on the Black model.</li>
</ul>
<ul>
<li>BLACKPTPRC: calculates the put price for European options on futures, based on the Black model.</li>
</ul>
<ul>
<li>BLKSHCLPRT: calculates the call price for European options, based on the Black-Scholes model.</li>
</ul>
<ul>
<li>BLKSHPTPRT: calculates the put price for European options, based on the Black-Scholes model.</li>
</ul>
<ul>
<li>GARKHCLPRC: calculates the call price for European options on currencies, based on the Garman-Kohlhagen model.</li>
</ul>
<ul>
<li>GARKHPTPRC: calculates the put price for European options on currencies, based on the Garman-Kohlhagen model.</li>
</ul>
<ul>
<li>MARGRCLPRC: calculates the call price for European options on exchange assets, based on the Margrabe model.</li>
</ul>
<ul>
<li>MARGRPTPRC: calculates the put price for European options on exchange assets, based on the Margrabe model.</li>
</ul>
<p>For more，see SAS9.2 online help，<em>Functions and CALL Routines by Category:  Financial</em>：<br />
<a href="http://support.sas.com/documentation/cdl/en/lrdict/59540/HTML/default/a000245860.htm"><span style="color: #669966;">http://support.sas.com/documentation/cdl/en/lrdict/59540/HTML/default/a000245860.htm</span></a></p>
<p>Note: A good web site for options pricing with different models, <a title="http://www.montegodata.co.uk/" href="http://www.montegodata.co.uk/"><span style="color: #669966;">http://www.montegodata.co.uk/</span></a></p>
<p><span style="color: #669966;"> </span></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a25c1b69-c356-4773-9162-c96f6558b8e8" class="wlWriterEditableSmartContent" style="margin: 0px; padding: 0px; display: inline;">del.icio.us  Tags: <a rel="tag" href="http://del.icio.us/popular/SAS"><span style="color: #669966;">SAS</span></a>,<a rel="tag" href="http://del.icio.us/popular/Base"><span style="color: #669966;">Base</span></a>,<a rel="tag" href="http://del.icio.us/popular/ETS"><span style="color: #669966;">ETS</span></a>,<a rel="tag" href="http://del.icio.us/popular/SAS9.2"><span style="color: #669966;">SAS9.2</span></a>,<a rel="tag" href="http://del.icio.us/popular/Financial%20Functions"><span style="color: #669966;">Financial Functions</span></a>,<a rel="tag" href="http://del.icio.us/popular/Options"><span style="color: #669966;">Options</span></a>,<a rel="tag" href="http://del.icio.us/popular/Call"><span style="color: #669966;">Call</span></a>,<a rel="tag" href="http://del.icio.us/popular/Put"><span style="color: #669966;">Put</span></a>,<a rel="tag" href="http://del.icio.us/popular/Pricing"><span style="color: #669966;">Pricing</span></a>,<a rel="tag" href="http://del.icio.us/popular/Black-Scholes%20model"><span style="color: #669966;">Black-Scholes model</span></a>,<a rel="tag" href="http://del.icio.us/popular/Black%20model"><span style="color: #669966;">Black model</span></a>,<a rel="tag" href="http://del.icio.us/popular/Black-76"><span style="color: #669966;">Black-76</span></a>,<a rel="tag" href="http://del.icio.us/popular/Garman-Kohlhagen%20model"><span style="color: #669966;">Garman-Kohlhagen model</span></a>,<a rel="tag" href="http://del.icio.us/popular/Margrabe%20model"><span style="color: #669966;">Margrabe model</span></a>,<a rel="tag" href="http://del.icio.us/popular/Futures%20Option"><span style="color: #669966;">Futures Option</span></a>,<a rel="tag" href="http://del.icio.us/popular/Stock%20Option"><span style="color: #669966;">Stock Option</span></a>,<a rel="tag" href="http://del.icio.us/popular/Currency%20Option"><span style="color: #669966;">Currency Option</span></a>,<a rel="tag" href="http://del.icio.us/popular/Exchange%20Option"><span style="color: #669966;">Exchange Option</span></a>,<a rel="tag" href="http://del.icio.us/popular/Financial%20Engineering"><span style="color: #669966;">Financial Engineering</span></a></div>
<p><span style="font-family: Arial; font-size: 85%;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/01/06/options-pricing-using-sas-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year</title>
		<link>http://www.jiangtanghu.com/blog/2009/01/01/happy-new-year-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2009/01/01/happy-new-year-2/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 15:45:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[Happy New Year]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2009/01/01/happy-new-year-2/</guid>
		<description><![CDATA[新年快乐 ( Xin Nian Kuai Le),

Guten  Rutsch ins neue Jahr,
Bonne Année,
Nav varsh ki shubh kamnayey,
Felice Anno Nuovo,
Feliz Año Nuevo,
Feliz Ano Novo,
明けましておめでとうございます (Akemashite Omedetô),
Gelukkig Nieuwjaar,
Szczęśliwego Nowego Roku,
Καλή Χρονιά (Kalí Chroniá),
Seh Heh Bok  Mani Bat Uh Seyo,
חג חנוכה שמח (Hag Hanukkah Sameah),
Cчастливого Нового  Года,
Happy New Year,


]]></description>
			<content:encoded><![CDATA[<div class="gmail_quote">新年快乐 ( Xin Nian Kuai Le),</p>
<div class="gmail_quote">
<div>Guten  Rutsch ins neue Jahr,<br />
Bonne Année,<br />
Nav varsh ki shubh kamnayey,<br />
Felice Anno Nuovo,<br />
Feliz Año Nuevo,<br />
Feliz Ano Novo,<br />
明けましておめでとうございます (Akemashite Omedetô),<br />
Gelukkig Nieuwjaar,<br />
Szczęśliwego Nowego Roku,<br />
Καλή Χρονιά (Kalí Chroniá),<br />
Seh Heh Bok  Mani Bat Uh Seyo,<br />
חג חנוכה שמח (Hag Hanukkah Sameah),<br />
Cчастливого Нового  Года,</div>
<p>Happy New Year,</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2009/01/01/happy-new-year-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links: Risk Intelligence Vendors Review: 2008</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/25/links-risk-intelligence-vendors-review-2008-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/25/links-risk-intelligence-vendors-review-2008-2/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 08:26:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[Celnet]]></category>
		<category><![CDATA[FinTech100]]></category>
		<category><![CDATA[Risk]]></category>
		<category><![CDATA[Risk Intelligence]]></category>
		<category><![CDATA[Risk Vendors]]></category>
		<category><![CDATA[RiskTech100]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/25/links-risk-intelligence-vendors-review-2008-2/</guid>
		<description><![CDATA[You can get the big picture viewing different  sources(REMEMBER: A vendor&#8217;s research methodology is as important as its  rating):


Chartis RiskTech 100 (October 2008)
http://www.chartisresearch.com/showreport.asp?id=46


 

 

FinTech100(2008)
http://www.americanbanker.com/article.html?id=20081112EGE9065B

 
FinTech100(2008): Top 25 Enterprise Companies
http://www.americanbanker.com/article.html?id=200811125HE027YZ

 
FinTech100(2008): Banking Top 10
http://www.americanbanker.com/article.html?id=20081112UMI813RM

 
FinTech100(2008): Capital Market Top 10
http://www.americanbanker.com/article.html?id=20081112N00MER4M

 
FinTech100(2008): Insurance Top 10
http://www.americanbanker.com/article.html?id=200811125LHKU4ZO

 
Celnet Credit Risk/Basel II Vendors(2008):
http://www.celent.com/PressReleases/200804143/FinCreditRiskVendors.asp


 
]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial;">You can get the big picture viewing different  sources(REMEMBER: A vendor&#8217;s research methodology is as important as its  rating):</p>
<p></span></div>
<div></div>
<div><span style="font-family: Arial;">Chartis RiskTech 100 (October 2008)</span></div>
<div><span style="font-family: Arial;"><a href="http://www.chartisresearch.com/showreport.asp?id=46">http://www.chartisresearch.com/showreport.asp?id=46</a></p>
<p><a href="http://2.bp.blogspot.com/_qlX7zyUQhog/SVNELKlQf2I/AAAAAAAABBk/O9jIagazNHU/s1600-h/RiskTech100-2008.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5283641746445598562" style="cursor: pointer; width: 320px; height: 290px;" src="http://2.bp.blogspot.com/_qlX7zyUQhog/SVNELKlQf2I/AAAAAAAABBk/O9jIagazNHU/s320/RiskTech100-2008.PNG" border="0" alt="" /></a></p>
<p></span></div>
<div><span style="font-family: Arial; font-size: 85%;"> </span></div>
<div><img src="cid:01d201c9666a$7afda6e0$22121bac@apac.sas.com" border="0" alt="" hspace="0" align="baseline" /></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;"><br />
FinTech100(2008)</span></div>
<div><span style="font-family: Arial;"><a href="http://www.americanbanker.com/article.html?id=20081112EGE9065B">http://www.americanbanker.com/article.html?id=20081112EGE9065B</a></p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">FinTech100(2008): Top 25 Enterprise Companies</span></div>
<div><span style="font-family: Arial;"><a href="http://www.americanbanker.com/article.html?id=200811125HE027YZ">http://www.americanbanker.com/article.html?id=200811125HE027YZ</a></p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">FinTech100(2008): Banking Top 10</span></div>
<div><span style="font-family: Arial;"><a href="http://www.americanbanker.com/article.html?id=20081112UMI813RM">http://www.americanbanker.com/article.html?id=20081112UMI813RM</a></p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">FinTech100(2008): Capital Market Top 10</span></div>
<div><span style="font-family: Arial;"><a href="http://www.americanbanker.com/article.html?id=20081112N00MER4M">http://www.americanbanker.com/article.html?id=20081112N00MER4M</a></p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">FinTech100(2008): Insurance Top 10</span></div>
<div><span style="font-family: Arial;"><a href="http://www.americanbanker.com/article.html?id=200811125LHKU4ZO">http://www.americanbanker.com/article.html?id=200811125LHKU4ZO</a></p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">Celnet Credit Risk/Basel II Vendors(2008):</span></div>
<div><span style="font-family: Arial;"><a href="http://www.celent.com/PressReleases/200804143/FinCreditRiskVendors.asp">http://www.celent.com/PressReleases/200804143/FinCreditRiskVendors.asp</a><br />
</span><a href="http://2.bp.blogspot.com/_qlX7zyUQhog/SVNEYBQ4f9I/AAAAAAAABBs/3LU_2yt0-Ac/s1600-h/Celent10.PNG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5283641967282520018" style="cursor: pointer; width: 320px; height: 238px;" src="http://2.bp.blogspot.com/_qlX7zyUQhog/SVNEYBQ4f9I/AAAAAAAABBs/3LU_2yt0-Ac/s320/Celent10.PNG" border="0" alt="" /></a></div>
<div><img src="cid:01d301c9666a$7afda6e0$22121bac@apac.sas.com" border="0" alt="" hspace="0" align="baseline" /></div>
<div><span style="font-family: Arial;"> </span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/25/links-risk-intelligence-vendors-review-2008-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links&#8211;BI Industry 2008: Review and Prospect</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/24/links-bi-industry-2008-review-and-prospect-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/24/links-bi-industry-2008-review-and-prospect-2/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 09:42:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[Informatica]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SPSS]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/24/links-bi-industry-2008-review-and-prospect-2/</guid>
		<description><![CDATA[ /*Thanks the hints supplied by: 
 
A look back at 2008 and some crystal ball predictions&#8230;, byTammi Kay Geroge, from SASBlog*/ 
 
Major Data Warehousing Events of 2008 (and Predictions for 2009), by Michael Schiff, from TDWI, 
 
 Major Data Warehousing Events of 2008: 
 

Everyone had an appliance story
Industry consolidations continued
The recessionary [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial; font-size: 100%;"> </span><span style="font-family: Arial; font-size: 100%;">/*Thanks the hints supplied by: </span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p><span style="font-family: Arial; font-size: 100%;"><a href="http://blogs.sas.com/bipie/index.php?/archives/43-A-look-back-at-2008-and-some-crystal-ball-predictions....html"><span style="color: #669966;"><em>A look back at 2008 and some crystal ball predictions&#8230;,</em> </span></a>byTammi Kay Geroge, from <a href="http://blogs.sas.com/"><span style="color: #669966;">SASBlog</span></a>*/ </span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p><span style="font-family: Arial; font-size: 100%;"><a href="http://www.tdwi.org/News/display.aspx?ID=9261"><span style="color: #669966;">Major Data Warehousing Events of 2008 (and Predictions for 2009), </span></a>by Michael Schiff, from <a href="http://www.tdwi.org/"><span style="color: #669966;">TDWI</span></a>, </span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<blockquote><p><span style="font-family: Arial; font-size: 100%;"> </span><span style="font-family: Arial; font-size: 100%;">Major Data Warehousing Events of 2008: </span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<ul><span style="font-family: Arial; font-size: 100%;"></p>
<li>Everyone had an appliance story</li>
<li>Industry consolidations continued</li>
<li>The recessionary environment encourage further BI developments</li>
<li>Open source grew</li>
<p></span></ul>
</blockquote>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<blockquote><p><span style="font-family: Arial; font-size: 100%;"> </span><span style="font-family: Arial; font-size: 100%;">Predictions for 2009: </span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<ul><span style="font-family: Arial; font-size: 100%;"></p>
<li>Further industry consolidation(Informatica by HP, SPSS by SAP)</li>
<li>Cloud computing will come down to earth</li>
<li>Open source growth will accelerate</li>
<li>The IT world will become greener</li>
<li>Major emphasis on solutions rather than tools and technology</li>
<p></span></ul>
</blockquote>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p><span style="font-family: Arial; font-size: 100%;"><em><a href="http://www.b-eye-network.com/view/9298"><span style="color: #669966;">BusinessIntelligence Tools: Year in Review</span></a></em>，by  Cindi Howson, from<a href="http://www.b-eye-network.com/"><span style="color: #669966;"> BeyeNetwork</span></a></span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p><span style="font-family: Arial; font-size: 100%;"><em><a href="http://news.zdnet.com/2424-9595_22-255255.html"><span style="color: #669966;">Top Virtualization Trends for 2009</span></a></em>, by John Suit,  from <a href="http://www.zdnet.com/"><span style="color: #669966;">ZDNet</span></a></span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p><span style="font-family: Arial; font-size: 100%;"><a href="http://www.intelligententerprise.com/blog/archives/2008/12/a_prediction_fo.html"><span style="color: #669966;"><em>Surround the Warehouse: Prediction for 2009</em> </span></a>,  by Neil Raden, from <a href="http://www.intelligententerprise.com/"><span style="color: #669966;">IntelligentEnterprise</span></a></span></p>
<p><span style="font-family: Arial; font-size: 100%;"> </span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/24/links-bi-industry-2008-review-and-prospect-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Industry Review: SAS and Teradata Partnership</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/19/industry-review-sas-and-teradata-partnership-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/19/industry-review-sas-and-teradata-partnership-2/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 02:44:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[data mining]]></category>
		<category><![CDATA[Anti-Money Laundering]]></category>
		<category><![CDATA[Business Analytics]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Credit Risk]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[Enterprise Intelligence and Optimization Services]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[Teradata]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/19/industry-review-sas-and-teradata-partnership-2/</guid>
		<description><![CDATA[SAS and Teradata  Partnership: Press
 

Leading Companies See Value in SAS and Teradata  Partnership
SAS and Teradata Unveil Advantage Program to Bring Powerful In-Database  Solutions and Services to Customers
SAS and  Teradata Enter into Strategic Partnership


 


In BI industry, the pure players  such as SAS, Teradata and Microstrategy, need to demonstrate their [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 100%;">SAS and Teradata  Partnership: Press</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 100%;"> </span></p>
<ol>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://www.sas.com/news/preleases/SASandTeradataAdvantageProgram.html">Leading Companies See Value in SAS and Teradata  Partnership</a></span></li>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://www.sas.com/news/preleases/TeradataAdvantageProgram.html">SAS and Teradata Unveil Advantage Program to Bring Powerful In-Database  Solutions and Services to Customers</a></span></li>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://www.teradata.com/t/page/173874/index.html">SAS and  Teradata Enter into Strategic Partnership</a></span><span style="font-size: 100%;"><span style="font-family: Arial; font-size: 10;"><br />
</span></span></li>
</ol>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-family: Arial; font-size: 100%;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 100%;"><span style="font-family: Arial; font-size: 10;"><br />
</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 100%;"><span style="font-family: Arial; font-size: 10;">In BI industry, the pure players  such as SAS, Teradata and Microstrategy, need to demonstrate their indispensable  values against the megavendors, IBM (acquired Cognos), SAP (acquired Business  Object), Oracle (acquired Hyperion) and Microsoft. Teradata is solely focused on  enterprise data warehouse. SAS, dominating in business analytics (e.g. advanced  statistics and data mining), will check and balance the BI industry due to the  private-hold structure. SAS and Teradata Advantage Program partnership, includes  wide business lines, such as Analytics, AML (Anti-Money Laundering), Credit  Risk, Enterprise Intelligence and Optimization Services. I think It&#8217;s a  effective way to learn from each other in mutual emulation and</span><span style="font-family: Times New Roman;"> </span><span style="font-family: Arial; font-size: 10;">counterbalance the </span><span class="wbtrmn"><span style="font-family: Times New Roman;">concentration</span></span><span style="font-family: Arial; font-size: 10;"> market.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/19/industry-review-sas-and-teradata-partnership-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Santa and SAS Again: Santa&#8217;s Dashboard</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/18/santa-and-sas-again-santas-dashboard-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/18/santa-and-sas-again-santas-dashboard-2/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 01:34:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[Robert Allison]]></category>
		<category><![CDATA[Santa]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/18/santa-and-sas-again-santas-dashboard-2/</guid>
		<description><![CDATA[
(santaDashBoard.png, With permission by Mr. Robert Allison)
Merry Christmas again. SAS marketing staff started up an interesting Christmas campaign on how Santa operates his workshop. Here is another wonderful work about Santa&#8217;s Dashboard, created by SAS senior R&#38;D staff, Robert Allison.
Robert is a master of graphics and visualization. You can view his SAS/Graph examples in the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lh4.ggpht.com/_qlX7zyUQhog/SUmosq74IVI/AAAAAAAABAA/x8sNnZxdwlM/s1600-h/santaDashBoard%5B6%5D.png"><img style="border-width: 0px;" src="http://lh3.ggpht.com/_qlX7zyUQhog/SUmotX9AsmI/AAAAAAAABAE/60L97qotFbI/santaDashBoard_thumb%5B4%5D.png?imgmax=800" border="0" alt="santaDashBoard" width="358" height="358" align="left" /></a></p>
<p><em>(santaDashBoard.png, With permission by Mr. Robert Allison)</em></p>
<p>Merry Christmas again. SAS marketing staff started up an interesting Christmas campaign on <a href="http://jiangtanghu.blogspot.com/2008/12/delivers-right-toys-and-goodies-to.html" target="_blank">how Santa operates his workshop</a>. Here is another wonderful work about <a href="http://www.youtube.com/watch?v=g2oGdKzX8pg">Santa&#8217;s Dashboard</a>, created by SAS senior R&amp;D staff, <a href="http://robslink.com/" target="_blank">Robert Allison</a>.</p>
<p>Robert is a master of graphics and visualization. You can view his SAS/Graph examples in the following link:</p>
<p><a title="http://robslink.com/SAS/Home.htm" href="http://robslink.com/SAS/Home.htm">http://robslink.com/SAS/Home.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/18/santa-and-sas-again-santas-dashboard-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Making of an Analyst: A Supplement to What Makes a Good Business Analyst</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/17/the-making-of-an-analyst-a-supplement-to-what-makes-a-good-business-analyst-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/17/the-making-of-an-analyst-a-supplement-to-what-makes-a-good-business-analyst-2/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 01:40:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[Analyst]]></category>
		<category><![CDATA[Rajan Chandras]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[SASCOM]]></category>
		<category><![CDATA[Ted Cuzzillo]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/17/the-making-of-an-analyst-a-supplement-to-what-makes-a-good-business-analyst-2/</guid>
		<description><![CDATA[I once commented the entry,  What Makes a Good Business Analyst by  Rajan Chandras, with an easy tone, If  You Can Make it Here, You Can Make it Anywhere. The standards of a good  analyst conclude by Rajan, in my opinion, are somewhat of very high  bars.

 
In the recent [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial;">I once commented the entry,  <a href="http://www.intelligententerprise.com/blog/archives/2008/12/what_makes_a_go.html"><em><span class="HeadGiantblack">What Makes a Good Business Analyst</span></em></a> by  Rajan Chandras, with an easy tone, <em><a href="http://jiangtanghu.blogspot.com/2008/12/if-you-can-make-it-here-you-can-make-it.html">If  You Can Make it Here, You Can Make it Anywhere</a></em>. The standards of a good  analyst conclude by Rajan, in my opinion, are somewhat of very high  bars.</p>
<p></span></div>
<div><span style="font-family: Arial;"> </span></div>
<div><span style="font-family: Arial;">In the recent SASCOM Magazine, Ted Cuzzillo published a  relatively moderate enty, say, <em><a href="http://www.sas.com/news/sascom/2008q4/feature_analyst.html">The Making of  An Analyst</a></em>. This paper is considered the fresh graduates to be an  analysts in their first job hunting. </span><span style="font-family: Arial;">Yes, there two  posts are more compatible than oppositive. Rajan&#8217;s targets are those veteran  analysts with years of experience.</span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/17/the-making-of-an-analyst-a-supplement-to-what-makes-a-good-business-analyst-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Time Series Analysis: Free Materials for SAS Users</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/16/learn-time-series-analysis-free-materials-for-sas-users-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/16/learn-time-series-analysis-free-materials-for-sas-users-2/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 08:07:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[ARCH]]></category>
		<category><![CDATA[ETS]]></category>
		<category><![CDATA[forecast]]></category>
		<category><![CDATA[GARCH]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[time series]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/16/learn-time-series-analysis-free-materials-for-sas-users-2/</guid>
		<description><![CDATA[0. A gentle Introduction  to Time Series Analysis, may serve as fast  learning materials:


http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm


1. An open source book(with data and code), A  First Course on Time Series Analysis: examples with SAS, by Prof. Michael  Falk, is available in:


http://statistik.mathematik.uni-wuerzburg.de/timeseries/


2. A SAS User book, Forecasting  Examples for Business and Economics Using SAS [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial; font-size: 100%;">0. A gentle <em><a href="http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm">Introduction  to Time Series Analysis</a></em>, may serve as fast  learning materials:</span><span style="font-size: 100%;"><br />
</span></div>
<div><span style="font-family: Arial; font-size: 100%;"><a href="http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm"></p>
<blockquote><p>http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm</p></blockquote>
<p></a></p>
<p></span></div>
<div><span style="font-family: Arial; font-size: 100%;">1. An open source book(with data and code), <a href="http://statistik.mathematik.uni-wuerzburg.de/timeseries/index.php?id=preamble"><em>A  First Course on Time Series Analysis: examples with SAS</em>, by Prof. Michael  Falk</a>, is available in:</span><span style="font-size: 100%;"><br />
</span></div>
<div><span style="font-family: Arial; font-size: 100%;"><a href="http://statistik.mathematik.uni-wuerzburg.de/timeseries/"></p>
<blockquote><p>http://statistik.mathematik.uni-wuerzburg.de/timeseries/</p></blockquote>
<p></a></p>
<p></span></div>
<div><span style="font-family: Arial; font-size: 100%;">2. A SAS User book, <a href="http://www.sas.com/apps/pubscat/bookdetails.jsp?catid=1&amp;pc=55512"><em>Forecasting  Examples for Business and Economics Using SAS </em>by B.  Cohen</a> (another popular SAS User book for time series is <a href="http://www.sas.com/apps/pubscat/bookdetails.jsp?catid=1&amp;pc=57275"><em>SAS  for Forecasting Time Series</em> by John Brocklebank and David Dickey</a>), is  example-driven approach. You can review and submit the codes to learn SAS for  time series analysis in a comprehensive way&#8211;there are 30 examples  available:</span><span style="font-size: 100%;"><br />
</span></div>
<div><span style="font-family: Arial; font-size: 100%;"></p>
<blockquote><p>1. Forecasting an Autoregressive  Progress<br />
2. Forecasting a Moving Average  Process<br />
3. Forecasting a Seasonal  Process<br />
4. Seasonal Adjustment and  Forecasting<br />
5. Forecasting with Transfer Function  Models<br />
6. Forecasting with Intervention  Models<br />
7. Forecasting Multivariate Time  Series<br />
8. Preparing Time Series Data for  Forecasting<br />
9. Using Macros for Forecasting  Tasks<br />
10. Fitting and Forecasting a Linear Model by  OLS<br />
11. Testing Forecasting Models for Break Points with Chow  Tests<br />
12.  Fitting and Forecasting Linear Models with Linear  Restrictions<br />
13. Fitting and  Forecasting a Linear Model with an AR Error Correction<br />
14. Fitting Linear Models with Heteroscedastic Error  Terms<br />
15. Fitting Linear Models with ARCH-GARCH Error  Terms<br />
16. Assessing Forecast  Accuracy<br />
17. Forecasting Using a Lagged Dependent Variable  Model<br />
18. Static and Dynamic Forecasting Using a Lagged Dependent Variable Model<br />
19. Fitting and Forecasting Polynomial Distributed Lag  Models<br />
20. Fitting and Forecasting Restricted Polynomial Distributed Lag  Models<br />
21. Fitting and Forecasting a Linear System by SUR and  ITSUR<br />
22. Testing and Restricting Parameter Estimates in a Linear System  Forecast<br />
23. Producing Goodness-of-Fit Statistics for Forecasts of a Linear  System o<br />
24. Fitting a Linear System by Instrumental  Methods<br />
25. Linear System Diagnostics and Autoregressive Error  Correction<br />
26.  Creating Forecast confidence Limits with Monte Carlo  Simulation<br />
27. Fitting and  Forecasting a Nonlinear  Model<br />
28. Restricting and Testing Parameters of a Nonlinear Forecasting  Model<br />
29. Producing Forecasts Automatically Using the Time  Series Forecasting Sys<br />
30. Developing Forecasting Models Using the Time  Series Forecasting System</p></blockquote>
<p></span></div>
<div><span style="font-family: Arial; font-size: 100%;">You can get the code with data and proc steps in  SAS website:</span><span style="font-size: 100%;"><br />
</span></div>
<div><span style="font-family: Arial; font-size: 100%;"><a href="http://ftp.sas.com/samples/A55512"></p>
<blockquote><p>http://ftp.sas.com/samples/A55512</p></blockquote>
<p></a></p>
<p></span></div>
<div><span style="font-family: Arial; font-size: 100%;">3. SAS/ETS User&#8217;s Guide and Procedure  Guide in <a href="http://support.sas.com/documentation/index.html">SAS  Product Documentation</a>:</span><span style="font-size: 100%;"><br />
</span></div>
<div><span style="font-family: Arial; font-size: 100%;"><a href="http://support.sas.com/documentation/onlinedoc/ets/index.html"></p>
<blockquote><p>http://support.sas.com/documentation/onlinedoc/ets/index.html</p></blockquote>
<p></a></p>
<p></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/16/learn-time-series-analysis-free-materials-for-sas-users-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links of 2008-12-16: Financial Engineering, Ponzi Scheme, SAS PC Game</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/16/links-of-2008-12-16-financial-engineering-ponzi-scheme-sas-pc-game-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/16/links-of-2008-12-16-financial-engineering-ponzi-scheme-sas-pc-game-2/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 01:34:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Quantitative finance]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[Financial Engineering]]></category>
		<category><![CDATA[Madoff]]></category>
		<category><![CDATA[PC Game]]></category>
		<category><![CDATA[Ponzi Scheme]]></category>
		<category><![CDATA[SEC]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/16/links-of-2008-12-16-financial-engineering-ponzi-scheme-sas-pc-game-2/</guid>
		<description><![CDATA[
The  State of Financial Engineering
Ponzi Scheme Returns: SEC Charges Bernard L.  Madoff for Multi-Billion Dollar Ponzi Scheme
WolfenSAS:  A PC Game written by SAS Code

]]></description>
			<content:encoded><![CDATA[<ol>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://creditspectrum.blogspot.com/2008/12/state-of-financial-engineering.html">The  State of Financial Engineering</a></span></li>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://en.wikipedia.org/wiki/Ponzi_scheme">Ponzi Scheme</a> Returns: <a href="http://www.sec.gov/news/press/2008/2008-293.htm">SEC Charges Bernard L.  Madoff for Multi-Billion Dollar Ponzi Scheme</a></span></li>
<li><span style="font-family: Arial; font-size: 100%;"><a href="http://wolfensas.subshock.net/">WolfenSAS:  A PC Game written by SAS Code</a></span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/16/links-of-2008-12-16-financial-engineering-ponzi-scheme-sas-pc-game-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delivers the Right Toys and Goodies to the Right Boys and Girls: Story of Santa and SAS</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/14/delivers-the-right-toys-and-goodies-to-the-right-boys-and-girls-story-of-santa-and-sas-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/14/delivers-the-right-toys-and-goodies-to-the-right-boys-and-girls-story-of-santa-and-sas-2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 11:57:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[Business Analytics]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Santa]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/14/delivers-the-right-toys-and-goodies-to-the-right-boys-and-girls-story-of-santa-and-sas-2/</guid>
		<description><![CDATA[How to know the boys and girls&#8217; real demands around the world? and how to predict their demands in next Christmas?
How to purchase toys and goodies with a balance of costs and profits? and how to deliver them more efficiently?
There are lots of questions in the list of Santa, CEO of Santa&#8217;s Workshop. SAS&#8217;s marketing [...]]]></description>
			<content:encoded><![CDATA[<p>How to know the boys and girls&#8217; real demands around the world? and how to predict their demands in next Christmas?</p>
<p>How to purchase toys and goodies with a balance of costs and profits? and how to deliver them more efficiently?</p>
<p>There are lots of questions in the list of Santa, CEO of Santa&#8217;s Workshop. SAS&#8217;s marketing staff held a very creative champion for the coming Christmas. You can watch the<a href="http://www.youtube.com/watch?v=eBtE7XOGZV4&amp;eurl=&amp;feature=player_embedded"> interview with Santa in youtube.com</a>, or read the success story about Santa, <a href="http://www.sas.com/success/santa.html"><em>Santa&#8217;s Secret: Magic? No. It&#8217;s SAS(R) Business Analytics</em></a>.</p>
<p>Merry Christmas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/14/delivers-the-right-toys-and-goodies-to-the-right-boys-and-girls-story-of-santa-and-sas-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If You Can Make it Here, You Can Make it Anywhere: On What Makes a Good Business Analyst by Rajan Chandras</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/14/if-you-can-make-it-here-you-can-make-it-anywhere-on-what-makes-a-good-business-analyst-by-rajan-chandras-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/14/if-you-can-make-it-here-you-can-make-it-anywhere-on-what-makes-a-good-business-analyst-by-rajan-chandras-2/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 16:24:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Industry Review]]></category>
		<category><![CDATA[Assessment]]></category>
		<category><![CDATA[business analyst]]></category>
		<category><![CDATA[Forrester]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/14/if-you-can-make-it-here-you-can-make-it-anywhere-on-what-makes-a-good-business-analyst-by-rajan-chandras-2/</guid>
		<description><![CDATA[In the latest post, What Makes a Good Business Analyst?, Rajan Chandras cites some soft items from  Forrester&#8217;s Business Analyst Assessment Workbook:
 

Ability to think abstractly, identify patterns, and generate ideas and solutions
Understanding of when and how to escalate issues or needs
Understanding of and ability to delivery the appropriate level of detail needed for [...]]]></description>
			<content:encoded><![CDATA[<p>In the latest post, <a href="http://www.intelligententerprise.com/blog/archives/2008/12/what_makes_a_go.html"><em><span class="HeadGiantblack">What Makes a Good Business Analyst?</span></em></a>, Rajan Chandras cites some soft items from <span class="hpTopStoryBlurb"> <em>Forrester&#8217;s Business Analyst Assessment Workbook</em>:<br />
</span><span class="hpTopStoryBlurb"> </span></p>
<ul>
<li>Ability to think abstractly, identify patterns, and generate ideas and solutions</li>
<li>Understanding of when and how to escalate issues or needs</li>
<li>Understanding of and ability to delivery the appropriate level of detail needed for each task</li>
<li>Interest in exploring and understanding new concepts and topic areas</li>
<li>Emotionally invested in the work</li>
<li>Ability to learn by shadowing stakeholders</li>
<li>Ability to clearly articulate technology in terms stakeholders can understand</li>
<li>Understanding of the organizational culture and its impact on processes and projects (this one seems obvious, but the latter phrase is more profound than might seem at first glance)</li>
<li>Ability to drive a decision analysis and selection process</li>
<li>Ability to recognize patterns in requirements and categorize them appropriately</li>
</ul>
<p>What&#8217;s more, there are some suggestions by Rajan Chandras himself:<span class="hpTopStoryBlurb"> </span></p>
<ul>
<li>Know the organization&#8217;s external environment: its competitive position, current state of the industry, geographical &amp; social factors, etc.</li>
<li>Know the organization&#8217;s internal environment: its financial position, organization culture, IT maturity, etc.</li>
<li>Adapt to the needs (your language, dress etc.), but be yourself. Imperfect, yet genuine, is fine; falsity comes through easily, and will destroy your credibility in no time.</li>
</ul>
<p><span class="hpTopStoryBlurb">No doubt, no boss can reject such a perfect analyst. But I&#8217;m afraid these standards are suitable for every professionals.</span><span class="hpTopStoryBlurb"> That is to say, they create a model to explain everything. It is too universal to be served as a good filter to select the most proper analysts. She or he may more marketable in any other business line.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/14/if-you-can-make-it-here-you-can-make-it-anywhere-on-what-makes-a-good-business-analyst-by-rajan-chandras-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Mining in Stock Market</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/13/data-mining-in-stock-market-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/13/data-mining-in-stock-market-2/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 15:55:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[Quantitative finance]]></category>
		<category><![CDATA[data mining]]></category>
		<category><![CDATA[decision tree]]></category>
		<category><![CDATA[parameter tuning]]></category>
		<category><![CDATA[predictive models]]></category>
		<category><![CDATA[stock market]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/13/data-mining-in-stock-market-2/</guid>
		<description><![CDATA[Data Mining in Stock Market? Is it crazy? or is it just a hopeless try? Every mentor in mathematics and finance educates us that the stock market is too chaotic and sentimental to use mathematical models. Most of all gift rock scientists are concentrated in the study of interest of rates and fixed income securities. [...]]]></description>
			<content:encoded><![CDATA[<p>Data Mining in Stock Market? Is it crazy? or is it just a hopeless try? Every mentor in mathematics and finance educates us that the stock market is too chaotic and <strong>sentimental</strong> to use mathematical models. Most of all gift rock scientists are concentrated in the study of interest of rates and fixed income securities. It sounds profitable to use mathematical and statistical models to predict the price of stock, but there are little successfull stories.</p>
<p>I know I might hold some academic doctrines, so I have interest to monitor any effort to try to forecast stock prices using data mining techniques. Some links from a popular data mining blog , <a href="http://dataminingresearch.blogspot.com/"><em>Data Mining Research</em></a>, are listed as follows:</p>
<ul>
<li><a href="http://dataminingresearch.blogspot.com/2008/09/stock-prediction-using-decision-tree.html">Stock Prediction using Decision Tree</a></li>
<li><a href="http://dataminingresearch.blogspot.com/2008/12/stock-picking-using-data-mining_12.html">Stock Picking using Data Mining: Parameter Tuning</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/13/data-mining-in-stock-market-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Haiku from SAS R&amp;D staff</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/10/haiku-from-sas-rd-staff-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/10/haiku-from-sas-rd-staff-2/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 03:37:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[SAS]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[haiku]]></category>
		<category><![CDATA[Matsuo Basho]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/10/haiku-from-sas-rd-staff-2/</guid>
		<description><![CDATA[First prompts are silent.
Subsequent prompts loud and clear.
Now all prompts are heard.
Poem from R&#38;D staff?
Yes. Rhyming sonnets were shakespeare-like complex;
they wrote Japanese haiku, showed as above.
The SAS R&#38;D staff should complete some paper work in defects system before changing a code. They use informal descriptive language(HAIKUUU!) in the early stage. Chris Hemedinger, a senior software [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>First prompts are silent.<br />
Subsequent prompts loud and clear.<br />
Now all prompts are heard.</p></blockquote>
<p>Poem from R&amp;D staff?<br />
Yes. Rhyming sonnets were shakespeare-like complex;<br />
they wrote Japanese haiku, showed as above.</p>
<p>The SAS R&amp;D staff should complete some paper work in defects system before changing a code. They use informal descriptive language(HAIKUUU!) in the early stage. <a href="http://blogs.sas.com/sasdummy/" target="_blank">Chris Hemedinger</a>, a senior software engineer at SAS, collected some <a href="http://blogs.sas.com/sasdummy/index.php?/archives/62-Poetry-in-commotion.html" target="_blank">haikus</a> in his blog to show the humor side of SAS R&amp;D staff. It&#8217;s interesting to cite one of the most famous haikus by <a href="http://en.wikipedia.org/wiki/Matsuo_Bash%C5%8D" target="_blank">Matsuo Bashō</a> for comparison:</p>
<blockquote><p>Old pond<br />
a frog jumps<br />
the sound of water</p></blockquote>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e0bef7d3-3ec5-4580-99ea-fd432ffbdcce" class="wlWriterSmartContent" style="margin: 0px; padding: 0px; display: inline;">del.icio.us Tags: <a rel="tag" href="http://del.icio.us/popular/haiku">haiku</a>,<a rel="tag" href="http://del.icio.us/popular/SAS">SAS</a>,<a rel="tag" href="http://del.icio.us/popular/R&amp;D">R&amp;D</a>,<a rel="tag" href="http://del.icio.us/popular/Matsuo%20Bash%c3%b4">Matsuo Bashô</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/10/haiku-from-sas-rd-staff-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy grow up</title>
		<link>http://www.jiangtanghu.com/blog/2008/12/10/happy-grow-up-2/</link>
		<comments>http://www.jiangtanghu.com/blog/2008/12/10/happy-grow-up-2/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 02:21:00 +0000</pubDate>
		<dc:creator>John(Jiangtang) HU</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[Beijing]]></category>
		<category><![CDATA[Robert Louis Stevenson]]></category>
		<category><![CDATA[The Book of Virutes]]></category>
		<category><![CDATA[W. Bennentt]]></category>

		<guid isPermaLink="false">http://www.jiangtanghu.com/blog/2008/12/10/happy-grow-up-2/</guid>
		<description><![CDATA[ 

Happy hearts and happy faces,
Happy play in grassy  places&#8211;
-Good and Bad  Children by Robert Louis  Stevenson
I read this verse in W. Bennentt&#8217;s popular book,  The  Book of Virtues, during the bus-to-company time this morning. It&#8217;s  interesting to read Stevenson&#8217;s Treasure Island, of course in Chinese  edition when [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial;"> </span></div>
<div style="margin-right: 0px;" dir="ltr"><span style="font-family: Arial;"></p>
<blockquote><p>Happy hearts and happy faces,<br />
Happy play in grassy  places&#8211;<br />
-<em><a href="http://www.bartleby.com/188/128.html">Good and Bad  Children</a></em> by <a href="http://en.wikipedia.org/wiki/Robert_Louis_Stevenson">Robert Louis  Stevenson</a></p></blockquote>
<p>I read this verse in W. Bennentt&#8217;s popular book,  <em><a href="http://www.amazon.com/Book-Virtues-Treasury-Great-Stories/dp/0671683063">The  Book of Virtues</a></em>, during the bus-to-company time this morning. It&#8217;s  interesting to read Stevenson&#8217;s <em>Treasure Island</em>, of course in Chinese  edition when I was young.</p>
<p></span></div>
<div><span style="font-family: Arial; font-size: 85%;"> </span></div>
<div><span style="font-family: Arial;">Yes, it sounds &#8220;uncool&#8221;, &#8211;I went to work, with technical  documents in my bag, and read a for-children book. A grown-up with childlike  innocence? dare not say. I just read the book to fresh my mind and my  English.</p>
<p></span></div>
<div></div>
<div><span style="font-family: Arial;">It snows little Beijing. </span></div>
<p><span style="font-family: Arial;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiangtanghu.com/blog/2008/12/10/happy-grow-up-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
