<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Business Intelligence Notes for SAS® BI Users</title>
	
	<link>http://www.bi-notes.com</link>
	<description>Providing tips, tricks and other resources for SAS® Users</description>
	<lastBuildDate>Tue, 14 May 2013 11:23:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/NotesOnSasBiSoftwareUsage" /><feedburner:info uri="notesonsasbisoftwareusage" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nd/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nd/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" /><feedburner:emailServiceId>NotesOnSasBiSoftwareUsage</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Coalesce Missing Data to Highlight the Unknown</title>
		<link>http://feedproxy.google.com/~r/NotesOnSasBiSoftwareUsage/~3/aWEsQK6GnEo/</link>
		<comments>http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/#comments</comments>
		<pubDate>Tue, 14 May 2013 11:00:47 +0000</pubDate>
		<dc:creator>Steve Overton</dc:creator>
				<category><![CDATA[Coding & Data]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[ETL]]></category>
		<category><![CDATA[working with data]]></category>

		<guid isPermaLink="false">http://www.bi-notes.com/?p=4826</guid>
		<description><![CDATA[<a href="http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/" title="Coalesce Missing Data to Highlight the Unknown"><img src="http://www.bi-notes.com/wp-content/uploads/2013/05/UnknownValuesDimTable-175x51.jpg" alt=""  class="colabs-image" /></a><p>Missing data can be a pain.  Having missing data and not knowing where it is can be even more of a pain.  Here is a ...</p><p>The post <a href="http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/">Coalesce Missing Data to Highlight the Unknown</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/steve-overton/">Steve Overton</a>.</p>]]></description>
	<a href="http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/" title="Coalesce Missing Data to Highlight the Unknown"><img src="http://www.bi-notes.com/wp-content/uploads/2013/05/UnknownValuesDimTable-175x51.jpg" alt="" class="colabs-image" /></a>			<content:encoded><![CDATA[<p>Missing data can be a pain.  Having missing data and not knowing where it is can be even more of a pain.  Here is a quick tip for potentially handling missing values during an <a title="http://en.wikipedia.org/wiki/Extract,_transform,_load" href="http://en.wikipedia.org/wiki/Extract,_transform,_load">ETL process</a>, or during any data processing step, and how to quickly spot.  Mileage may vary depending on the business requirements for processing your data.</p>
<h2>Coalesce the Missing Values</h2>
<p>The coalesce function (alternatively the coalesceC function for character values) is very useful for selectively loading a field depending on the state of data.  The parameters are simple.  Just reference variables in your data or explicit hard-coded values and the coalesce function picks the first non-missing value for that observation.  It selects based on the order variables are entered, from left to right.</p>
<pre>coalesce( [first variable], [second variable], .... , [Nth variable])</pre>
<p>Sometimes I hard-code the following values at the end of the coalesce parameter list to ensure something gets entered (depending on requirements):</p>
<ul>
<li>!UNKNOWN</li>
<li>!MISSING</li>
<li>!HEY LOOK AT ME</li>
</ul>
<p>Using these standardized values can help the business spot missing values very quickly, especially if you use a special character such as the exclamation point which sorts missing values at the top when viewing in ascending order.  </p>
<p>The following code fills missing values of &#8216;DeathCause&#8217; in the SASHELP.HEART dataset:</p>
<pre>data out;
  set SASHELP.HEART; 
  DeathCause = coalesceC(DeathCause, '!UNKNOWN');
run;</pre>
<p>The missing values are converted to !UNKNOWN:</p>
<p><a href="http://www.bi-notes.com/wp-content/uploads/2013/05/CoalesceMissingValues.jpg"><img class="size-full wp-image-5635 alignnone" style="margin: 5px;" alt="Coalesce Missing Values" src="http://www.bi-notes.com/wp-content/uploads/2013/05/CoalesceMissingValues.jpg" width="447" height="248" /></a></p>
<h2>Identify Missing Data when Loading a Dimensional Model</h2>
<p>Coalescing missing foreign key values can also be useful when loading a <a title="http://en.wikipedia.org/wiki/Dimensional_modeling" href="http://en.wikipedia.org/wiki/Dimensional_modeling">dimensional model</a>.  In a <a title="http://en.wikipedia.org/wiki/Star_schema" href="http://en.wikipedia.org/wiki/Star_schema">star schema</a>, categorical values are stored in dimension tables with corresponding foreign keys that references these values from fact tables.   The purpose of foreign keys is to describe the factual numeric values contained in the fact table by joining to the related dimension table.  A good best practice is to always load explicit non-NULL foreign key values to ensure numeric data is always identified and because your <a title="http://en.wikipedia.org/wiki/Database_administrator" href="http://en.wikipedia.org/wiki/Database_administrator">DBA</a> may not like NULL values within <a title="http://en.wikipedia.org/wiki/Integrity_constraint" href="http://en.wikipedia.org/wiki/Integrity_constraint">integrity constraints</a>.  If a numeric value truly has a missing dimension, you can use the coalesce function to stage a &#8220;zero&#8221; value for the foreign key in a fact table.  You could also use a value of &#8220;-1&#8243; as the &#8220;missing&#8221; foreign key value.  This also acts as a &#8220;catch all&#8221; to make sure the ETL process completes with no errors due to attempting to insert a missing or NULL value in a fact table. </p>
<p>This is an example DIMENSION table I&#8217;m using to reference address locations in a fact table.  </p>
<p><a href="http://www.bi-notes.com/wp-content/uploads/2013/05/UnknownValuesDimTable.jpg"><img class="size-full wp-image-5638 alignnone" style="margin: 5px;" alt="Unknown Values DIM Table" src="http://www.bi-notes.com/wp-content/uploads/2013/05/UnknownValuesDimTable.jpg" width="585" height="172" /></a></p>
<p>The fact table can reference the &#8216;address_key&#8217; of 0 for anything that is missing or unknown.</p>
<p>These are two ways I&#8217;ve used the <a title="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002518172.htm" href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002518172.htm">COALESCE</a>() and <a title="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002518268.htm" href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002518268.htm">COALESCEC</a>() functions.  Do you have any other uses?</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.bi-notes.com/2012/12/admin-update-table-metadata-sas-code/" title="Permanent link to Update Table Metadata Using Base SAS Code">Update Table Metadata Using Base SAS Code</a>  </li>
<li> <a href="http://www.bi-notes.com/2012/10/sas-process-data-rdbms-buffering/" title="Permanent link to SAS Administration: Process Data Faster in RDBMS by Buffering the Data in Memory">SAS Administration: Process Data Faster in RDBMS by Buffering the Data in Memory</a>  </li>
<li> <a href="http://www.bi-notes.com/2013/02/sas-stored-processes-querying-a-stored-process-from-excel-without-the-add-in/" title="Permanent link to SAS Stored Processes: Querying a Stored Process from Excel without the Add-In">SAS Stored Processes: Querying a Stored Process from Excel without the Add-In</a>  </li>
<li> <a href="http://www.bi-notes.com/2012/01/sas-eg-tips-data-working/" title="Permanent link to SAS EG: 3 Quick Tips for Working with Data">SAS EG: 3 Quick Tips for Working with Data</a>  </li>
<li> <a href="http://www.bi-notes.com/2013/01/sas-admin-common-compute-server-performance-options/" title="Permanent link to SAS Administration: Change the Options to Get More Performance">SAS Administration: Change the Options to Get More Performance</a>  </li>
</ol></div><p>The post <a href="http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/">Coalesce Missing Data to Highlight the Unknown</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/steve-overton/">Steve Overton</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=aWEsQK6GnEo:2BOA9P-u9f8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=aWEsQK6GnEo:2BOA9P-u9f8:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NotesOnSasBiSoftwareUsage/~4/aWEsQK6GnEo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bi-notes.com/2013/05/coalesce-missing-data-to-highlight-the-unknown/</feedburner:origLink></item>
		<item>
		<title>SASGF13 – Calling All SAS BI Rock Stars</title>
		<link>http://feedproxy.google.com/~r/NotesOnSasBiSoftwareUsage/~3/kx_AAADwSpE/</link>
		<comments>http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 05:18:33 +0000</pubDate>
		<dc:creator>Tricia Aanderud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[user conferences]]></category>

		<guid isPermaLink="false">http://www.bi-notes.com/?p=5601</guid>
		<description><![CDATA[<a href="http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/" title="SASGF13 &#8211; Calling All SAS BI Rock Stars"><img src="http://www.bi-notes.com/wp-content/uploads/2013/04/0412_bi_rock_star-175x127.jpg" alt="sas bi rock star ribbon"  class="colabs-image" /></a><p> 
Ok I&#8217;m looking for SAS BI Rock Stars at SAS Global Forum 2013.  If you are a regular blog reader &#8211; you have to find ...</p><p>The post <a href="http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/">SASGF13 &#8211; Calling All SAS BI Rock Stars</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p>]]></description>
	<a href="http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/" title="SASGF13 – Calling All SAS BI Rock Stars"><img src="http://www.bi-notes.com/wp-content/uploads/2013/04/0412_bi_rock_star-175x127.jpg" alt="sas bi rock star ribbon" class="colabs-image" /></a>			<content:encoded><![CDATA[<p style="text-align: center;"> </p>
<p>Ok I&#8217;m looking for SAS BI Rock Stars at SAS Global Forum 2013.  If you are a regular blog reader &#8211; you have to find me!  We have ribbons to add to your name tag. </p>
<p>Even if you are not a SAS BI user &#8211; you can still have one and just say you&#8217;re <em>in training</em>. <em id="__mceDel"><a href="http://www.bi-notes.com/wp-content/uploads/2013/04/0412_bi_rock_star.jpg"><img class="size-full wp-image-5604 aligncenter" alt="0412_bi_rock_star" src="http://www.bi-notes.com/wp-content/uploads/2013/04/0412_bi_rock_star.jpg" width="320" height="233" /></a></em></p>
<h2>Check Out These Spots</h2>
<p>If you cannot find me &#8230; then check Michelle Homes at the Metacoda booth in the demo hall as well!  Vince DelG0bbo also has some at his booth.</p>
<p>Steve Overton will have some as well. </p>
<h2> </h2>
<h2>#SASGF13 #TweetUp Photos!</h2>
<p>Check out the photos from last night&#8217;s event.  We all had a blast playing a Bingo game full of trivia like &#8220;Find a Trekkie&#8221;, &#8220;Find someone with a rack mounted server in home&#8221;, &#8220;Find some wearing blue shoes&#8221;, &#8220;Find some wearing a SGF tee-shirt&#8221;&#8230; and on and on.</p>
<p>See all the photos at the <a href="http://www.flickr.com/groups/metacoda_sasgf13/">Metacoda SASGF13 TweetUp</a> stream.</p>
<p>&nbsp;</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.bi-notes.com/2013/03/sas-global-forum-2013-tweetup/" title="Permanent link to Attending SAS Global Forum 2013? You Are Invited to a TweetUp!">Attending SAS Global Forum 2013? You Are Invited to a TweetUp!</a>  </li>
</ol></div><p>The post <a href="http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/">SASGF13 &#8211; Calling All SAS BI Rock Stars</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=kx_AAADwSpE:U_FRWzrp2UY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=kx_AAADwSpE:U_FRWzrp2UY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NotesOnSasBiSoftwareUsage/~4/kx_AAADwSpE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.bi-notes.com/2013/04/sasgf13-calling-all-sas-bi-rock-stars/</feedburner:origLink></item>
		<item>
		<title>Are You a SAS BI Geek Seeking Visual Analytics Answers at #SASGF13?</title>
		<link>http://feedproxy.google.com/~r/NotesOnSasBiSoftwareUsage/~3/npx2PwkshGI/</link>
		<comments>http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 14:57:04 +0000</pubDate>
		<dc:creator>Tricia Aanderud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[user conferences]]></category>
		<category><![CDATA[visual analytics]]></category>

		<guid isPermaLink="false">http://www.bi-notes.com/?p=5586</guid>
		<description><![CDATA[<a href="http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/" title="Are You a SAS BI Geek Seeking Visual Analytics Answers at #SASGF13?"><img src="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo_tiny_pic-175x127.png" alt=""  class="colabs-image" /></a><p>SAS Global Forum 2013 is fast approaching so I realized I better plan my schedule. While I enjoy the social events the most, the other ...</p><p>The post <a href="http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/">Are You a SAS BI Geek Seeking Visual Analytics Answers at #SASGF13?</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p>]]></description>
	<a href="http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/" title="Are You a SAS BI Geek Seeking Visual Analytics Answers at #SASGF13?"><img src="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo_tiny_pic-175x127.png" alt="" class="colabs-image" /></a>			<content:encoded><![CDATA[<p><a href="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo_feature_image.png"><img class="alignleft  wp-image-5595" alt="sas visual analytics demo " src="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo_feature_image.png" width="256" height="151" /></a>SAS Global Forum 2013 is fast approaching so I realized I better plan my schedule. While I enjoy the social events the most, the other obvious thrust of the conference is to learn more about the new SAS products.  At last year&#8217;s conference they were introducing the Visual Analytics, so the conference was not overall dominated by the product.  However,this year I expect there to be an <em>information overload</em> on the product. I don&#8217;t mind- I want to know more.</p>
<p>Last December I had short chat with <a href="http://www.linkedin.com/pub/rick-styll/1/195/136">Rick Styll</a>, a SAS product manager, who was really excited about the product and encouraged me to learn about it and write about it.  I believe he brought SAS Press editor Julie Platt with him as a hint.  When VA 6.1 was introduced, I grabbed the free online<a href="http://support.sas.com/documentation/cdl/en/vaug/65747/PDF/default/vaug.pdf"> customer documentation </a> to start reading it.  [That's right ...when all else fails <a href="http://www.urbandictionary.com/define.php?term=RTFM">RTFM </a>baby!]  Ok, would you believe I skimmed the first few chapters &#8211; <em>heavily</em>?</p>
<p style="text-align: left;">[BTW Rick is presenting a <a href="http://support.sas.com/resources/papers/proceedings13/059-2013.pdf">Visual Analytics</a> paper on Tuesday afternoon so make sure you attend and sit on the front row.]</p>
<h2>What is Visual Analytics?</h2>
<p>Remember the idea is that this product can handle big data quickly and allow users to easily interact with the data!  Last year Dr. Goodnight said the application <a href="http://blogs.sas.com/content/sascom/2012/10/15/jim-goodnight-on-the-secrets-of-big-data-computing/">reduce a job that required</a> ~18 hours to run to under a half hour. Impressive for sure &#8211; but that was a lot of hardware.  I like the live demo he gave on stage of the product [see here:<a href="http://www.youtube.com/watch?v=6tlwri_zVeo">Link to billion records in seconds video.</a>]  It was certainly fast and the results were very pretty.</p>
<p>That&#8217;s an important point because some of the SAS output would not win any beauty contests -especially when Excel charts go walking down the runway.  The speed was due to the fancy server SAS LASR Analytics Server, but the beauty was the Visual Analytics product.</p>
<h3><span style="font-size: 1.17em;">Quick Product Overview </span></h3>
<p>Visual Analytics is a web-based application that can be broken into several components:</p>
<ul>
<li><strong>Visual Data Builder</strong> allows you to build queries, join tables, and create calculations from registered database tables. It&#8217;s how you prepare the data for display.</li>
<li><strong>Visual Analytics Explorer</strong> allows you to interact with the data.  You can build charts, tables, maps in the workspace area or just play with the data.  </li>
<li><strong>Visual Analytics Designer</strong> allows you to create reports or dashboards that can be viewed on a mobile device (using the SAS Mobile BI app) or in the viewer.  This product is most similar to the existing BI Dashboard product.</li>
<li><strong>Visual Analytics Viewer </strong>allows users to view the report on a Web browser.</li>
<li><strong>Visual Analytics Administrator</strong> allows you to manage the environment.</li>
</ul>
<p>This configuration looks similar to another SAS application that we may be more familiar with!</p>
<p>I downloaded the SAS Mobile BI app for my iPad from the Apple store. [<a href="https://play.google.com/store/apps/details?id=com.sas.android.bimobile&amp;hl=en">Also available on Google Play</a>.]  SAS has some samples setup so you can interact with it to learn how to use the product. Just click on the Library button and you&#8217;ll see a list of items you can add.  For instance, I added Mashups and Explorations. </p>
<p style="text-align: center;"><a href="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo.png"><br /><img class="aligncenter size-full wp-image-5592" alt="sas visual analytics demo" src="http://www.bi-notes.com/wp-content/uploads/2013/04/0413_va_demo.png" width="791" height="584" /></a><a href="http://www.bi-notes.com/wp-content/uploads/2013/04/IMG_0162.png"><br /></a> </p>
<h2>Questions I Have</h2>
<p>First let me re-iterate that I like what I am seeing so far in the demos and the documentation.  I&#8217;d say SAS is rockin&#8217; it with this tool and it generates some fantastic results.  I also realize every product has it&#8217;s limitations &#8211; which is not good or bad &#8211; just reality.</p>
<p>After skimming the documentation, here&#8217;s the questions I hope to have answered at the conference.  Some questions I think I know the answer  - but I want to confirm before I start blabbing to everyone else.</p>
<ul>
<li><span style="line-height: 13px;"><span style="line-height: 13px;"><span style="line-height: 13px;"><span style="line-height: 13px;">What I like about the information maps is that they apply a business layer to the data making it easier to understand.  Since the Visual Data Builder is inside the database, what features do I use to make the data more &#8220;user friendly&#8221;?</span></span></span></span>
<p>&nbsp;</p>
</li>
<li>Who is using the mobile features for this product?  Most of the jobs I have done, the data was extremely confidential.  I cannot imagine a bank allowing their data to be available from an iPad <em>easily</em>.  Maybe summarized data is okay &#8211; but is that really useful?  Maybe it&#8217;s meant for sales people?</li>
<li>The product uses Flash.  I thought <a href="http://techcrunch.com/2012/06/30/steve-jobs-war-against-flash/">Steve Jobs used his iPad to squash Flash</a> in favor of HTML5? </li>
<li>How should I think about this tool in conjunction with the SAS BI tool set   Is it just part of the tool set  is it replacing it?
<ul>
<li>Looks like there is not an upgrade path to this product from my existing BI install.  What suggestions does SAS have for re-using my existing work?</li>
<li>Can I link to my Web Report Studio reports?  Pass values through a parameter?  How about a SAS Stored Process?</li>
<li>Are my stored processes re-useable?</li>
</ul>
</li>
<li>Will <a href="http://www.sirifunny.com/">Siri</a> interact with my mobile BI app?  Can I make her build charts for me? <br />  </li>
<li>Oh &#8230; how much does it cost?  How is it licensed?   Can I purchase it without the fancy-schmancy hardware?  Really I&#8217;m just looking for a price range, not a quote. </li>
</ul>
<h2>Where Can I See It?</h2>
<p>SAS is presenting some papers about the Visual Analytics product.  Check the #SASGF13<a href="http://support.sas.com/events/sasglobalforum/2013/pagenda.html"> Agenda Builder</a> for times and locations [<a href="http://appfinder.lisisoft.com/app/sas-global-forum-2013.html">or the mobile app</a>].  Here&#8217;s a partial list that I hope to attend.</p>
<p><strong>Monday</strong></p>
<ul>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/063-2013.pdf">SAS® Business Intelligence Development Roundtable: SAS Business Intelligence Solutions Portfolio and Future Focus</a></i></li>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/051-2013.pdf">Self-Service Data Management: Visual Data Builder</a> </i></li>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/524-2013.pdf">SAS® Workshop: SAS® Visual Analytics 6.1</a></i></li>
</ul>
<p><strong>Tuesday</strong></p>
<ul>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/057-2013.pdf">Whirlwind Tour Around SAS® Visual Analytics</a></i></li>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/058-2013.pdf">The Forest and the Trees: See It All with SAS® Visual Analytics Explorer</a></i></li>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/059-2013.pdf">Fast Dashboards Anywhere with SAS® Visual Analytics</a></i></li>
</ul>
<p><strong>Wednesday</strong></p>
<ul>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/053-2013.pdf">How Mobile Changes the BI Experience</a></i></li>
<li><i><a href="http://support.sas.com/resources/papers/proceedings13/541-2013.pdf">Emerging Best Practices in the Age of Democratized Analytics</a></i></li>
</ul>
<p>Also, check the demo hall for specific product demonstrations.  </p>
<h2>Tell Me What You Think</h2>
<p>If there are any questions you have, put them in the comment below and I&#8217;ll look for the answer.</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.bi-notes.com/2012/03/sas-introduces-the-visual-analytics-solution/" title="Permanent link to SAS Introduces the Visual Analytics Solution">SAS Introduces the Visual Analytics Solution</a>  </li>
<li> <a href="http://www.bi-notes.com/2012/04/sas-global-forum-orlando-here-i-come-im-so-pumped/" title="Permanent link to SAS Global Forum: Orlando, Here I Come!  I&#8217;m so Pumped!!">SAS Global Forum: Orlando, Here I Come!  I&#8217;m so Pumped!!</a>  </li>
<li> <a href="http://www.bi-notes.com/2013/03/sas-global-forum-2013-tweetup/" title="Permanent link to Attending SAS Global Forum 2013? You Are Invited to a TweetUp!">Attending SAS Global Forum 2013? You Are Invited to a TweetUp!</a>  </li>
<li> <a href="http://www.bi-notes.com/2013/01/year-in-review-top-sas-bi-notes-posts-for-2012/" title="Permanent link to Year in Review: Top Posts for BI Notes Blog 2012">Year in Review: Top Posts for BI Notes Blog 2012</a>  </li>
<li> <a href="http://www.bi-notes.com/2012/03/sas-global-forum-2012-will-i-see-you-there/" title="Permanent link to SAS Global Forum 2012: Will I See You There?">SAS Global Forum 2012: Will I See You There?</a>  </li>
</ol></div><p>The post <a href="http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/">Are You a SAS BI Geek Seeking Visual Analytics Answers at #SASGF13?</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=npx2PwkshGI:SzAPHAuK6ic:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=npx2PwkshGI:SzAPHAuK6ic:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NotesOnSasBiSoftwareUsage/~4/npx2PwkshGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://www.bi-notes.com/2013/04/sas-global_forum-13-visual-analytics-questions/</feedburner:origLink></item>
		<item>
		<title>Tips for Creating a Great LinkedIn Profile</title>
		<link>http://feedproxy.google.com/~r/NotesOnSasBiSoftwareUsage/~3/Iv2nwr_GQoA/</link>
		<comments>http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 11:04:31 +0000</pubDate>
		<dc:creator>Tricia Aanderud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://www.bi-notes.com/?p=5570</guid>
		<description><![CDATA[<a title="Tips for Creating a Great LinkedIn Profile" href="http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/" ><img src="http://www.bi-notes.com/wp-content/themes/arthemia-premium/functions/timthumb.php?src=http://img.youtube.com/vi/kM0mQzgV9A4/0.jpg&amp;w=175&amp;h=&amp;zc=1&amp;q=90" alt="Tips for Creating a Great LinkedIn Profile" class="colabs-image"  /></a><p>How is your LinkedIn profile looking?  If you are thinking of looking for a job or if you just want to be prepared, then this ...</p><p>The post <a href="http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/">Tips for Creating a Great LinkedIn Profile</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p>]]></description>
	<a title="Tips for Creating a Great LinkedIn Profile" href="http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/"><img src="http://www.bi-notes.com/wp-content/themes/arthemia-premium/functions/timthumb.php?src=http://img.youtube.com/vi/kM0mQzgV9A4/0.jpg&amp;w=175&amp;h=&amp;zc=1&amp;q=90" alt="Tips for Creating a Great LinkedIn Profile" class="colabs-image" /></a>			<content:encoded><![CDATA[<p>How is your LinkedIn profile looking?  If you are thinking of looking for a job or if you just want to be prepared, then this <a href="http://www.youtube.com/embed/kM0mQzgV9A4">video</a> has some tips for you. </p>
<p>Here&#8217;s the main points:</p>
<ul>
<li>LinkedIn is not Facebook, learn the difference.</li>
<li><span style="line-height: 13px;">Don&#8217;t wear sunglasses in your LinkedIn profile picture.</span></li>
<li>You need connections!</li>
</ul>
<p>The post <a href="http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/">Tips for Creating a Great LinkedIn Profile</a> appeared first on <a href="http://www.bi-notes.com">Business Intelligence Notes for SAS® BI Users</a>.  Written by <a rel="author" href="http://www.bi-notes.com/author/tricia-aanderud/">Tricia Aanderud</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=Iv2nwr_GQoA:Zrns3u8bndE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?a=Iv2nwr_GQoA:Zrns3u8bndE:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/NotesOnSasBiSoftwareUsage?d=YwkR-u9nhCs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/NotesOnSasBiSoftwareUsage/~4/Iv2nwr_GQoA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bi-notes.com/2013/04/user-groups-create-linkedin-profil/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.834 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-14 07:23:38 --><!-- Compression = gzip -->
