<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can Someone Please Explain this Code to me? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200129#M49970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The two SET statements, in combination with _N_, is a very standard way to combine two SAS data sets.&amp;nbsp; The usual conditions would be that _WINSOR contains just one observation which you would like added to every observation in HAVE.&amp;nbsp; There's no variable to merge by, so this is the workaround.&amp;nbsp; Read _WINSOR just once, and its variables are automatically retained.&amp;nbsp; (Any variables that are read from a SAS data set are automatically retained.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding some of the other pieces, _: means all variable names that begin with an underscore.&amp;nbsp; So all of those get dropped from the output data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_V is just a name for a variable.&amp;nbsp; It doesn't exist ahead of time, and it gets dropped because of the DROP clause.&amp;nbsp; When you work with arrays, you usually need a variable to serve as an index to the array ... which variable within the array is currently being processed.&amp;nbsp; _V serves as that index to the array here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Mar 2015 15:54:59 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2015-03-12T15:54:59Z</dc:date>
    <item>
      <title>Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200124#M49965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am a relatively experienced user of SAS, but I received the following code from another SAS Support member for winsorizing data (which works amazingly, by the way), and I would love it if someone could explain part of his code to me, so that I know what is happening and maybe I could use techniques like this in my later code.&amp;nbsp; The code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;%let L=10;&amp;nbsp;&amp;nbsp;&amp;nbsp; %* 10th percentile *;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;%let H=%eval(100 - &amp;amp;L);&amp;nbsp;&amp;nbsp; %* 90th percentile*;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc univariate data=have noprint;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; by qtr;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; var size;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; output out=_winsor&amp;nbsp;&amp;nbsp; pctlpts=&amp;amp;L&amp;nbsp; &amp;amp;H&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pctlpre=__size ;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data want (drop=_:);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; if _n_=1 then set _winsor;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array wlo&amp;nbsp; {*} __size&amp;amp;L&amp;nbsp; ;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array whi&amp;nbsp; {*} __size&amp;amp;H ;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array wval {*} wsize ;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array val&amp;nbsp;&amp;nbsp; {*} size ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; do _V=1 to dim(val);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wval{_V}=min(max(val{_V},wlo{_V}),whi{_V});&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I know what the first two parts are doing, setting my limits for the winsorization and using Univariate to get my percentile values for my by variable.&amp;nbsp; But the third part I don't really understand.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;What are the two set statements doing and what is _n_ = 1 mean?&amp;nbsp; I don't have that variable anywhere?&amp;nbsp; I have never seen _: which shows up in the drop statement.&amp;nbsp; And what is _V?&amp;nbsp; I don't see that variable anywhere else?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Any help would be awesome, and thanks for taking the time to educate a newbie.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:29:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200124#M49965</guid>
      <dc:creator>mahler_ji</dc:creator>
      <dc:date>2015-03-12T15:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200125#M49966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_N_ is an automatic variable which identifies the row number: &lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000695104.htm" title="http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000695104.htm"&gt;SAS(R) 9.2 Language Reference: Concepts, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;_V in your code is a variable setup to iterate over a loop.&amp;nbsp; The loop in this case is one to the size of the val array.&amp;nbsp; So the code between the do and end runs 1 to size of val times, each time with an increment (in this case 1) each time.&amp;nbsp; You could not use a loop and have:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;wval{1}=min(max(val{1},wlo{1}),whi{1});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;wval{2}=min(max(val{2},wlo{2}),whi{2});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;etc.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:37:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200125#M49966</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-03-12T15:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200126#M49967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;_N_ is an automatic variable that keeps track which is the current observation number. &lt;/P&gt;&lt;P&gt;It is not stored in the output data set.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200126#M49967</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-03-12T15:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200127#M49968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess is that it may not be doing what it was intended to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line: &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt; if _n_=1 then set _winsor;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;adds the first quarter's 10 and 90 percent values to the new file (want), and makes those values available for all of the records in have.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it ignores the 10 and 90 percent values for all of the other quarters, as those records are never read from the file _winsor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200127#M49968</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-12T15:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200128#M49969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;Linus Hjorth wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;_N_ is an automatic variable that &lt;STRONG&gt;keeps track which is the current observation number.&lt;/STRONG&gt; &lt;/P&gt;
&lt;P&gt;It is not stored in the output data set.&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not necessarily, the value if _N_ is incremented at the start of each iteration of the data step loop, sometimes referred to as the observation loop, it doesn't necessary correspond to the observation number of observations being read or written. .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200128#M49969</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-12T15:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200129#M49970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The two SET statements, in combination with _N_, is a very standard way to combine two SAS data sets.&amp;nbsp; The usual conditions would be that _WINSOR contains just one observation which you would like added to every observation in HAVE.&amp;nbsp; There's no variable to merge by, so this is the workaround.&amp;nbsp; Read _WINSOR just once, and its variables are automatically retained.&amp;nbsp; (Any variables that are read from a SAS data set are automatically retained.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding some of the other pieces, _: means all variable names that begin with an underscore.&amp;nbsp; So all of those get dropped from the output data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_V is just a name for a variable.&amp;nbsp; It doesn't exist ahead of time, and it gets dropped because of the DROP clause.&amp;nbsp; When you work with arrays, you usually need a variable to serve as an index to the array ... which variable within the array is currently being processed.&amp;nbsp; _V serves as that index to the array here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 15:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200129#M49970</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-03-12T15:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200130#M49971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Astounding: there is a potential merge by variable, namely qtr, which was used as a by variable when proc univariate was run.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 16:18:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200130#M49971</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-12T16:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200131#M49972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;True, true.&amp;nbsp; So why is the program written as it is? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possibility:&amp;nbsp; By design, only the first observation in _WINSOR is supposed to be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possibility:&amp;nbsp; The program was originally written without a BY statement in PROC UNIVARIATE.&amp;nbsp; Once the BY statement was added, the program should have switched to MERGE later, but nobody took the trouble to figure that out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we are too far away from the circumstances to tell which (if either) is correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 16:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200131#M49972</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-03-12T16:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200132#M49973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi @&lt;SPAN class="j-post-author "&gt;Astounding and @art297,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can you please explain the &lt;SPAN style="text-decoration: underline;"&gt;array statements&lt;/SPAN&gt; in the original poster's code for me.&lt;/P&gt;&lt;P&gt;array wlo&amp;nbsp; {*} __size&amp;amp;L&amp;nbsp; ;&lt;STRONG&gt;/*if the macro &amp;amp;L resolves to some value, how many elements would this array contain?*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array whi&amp;nbsp; {*} __size&amp;amp;H ;&lt;STRONG&gt;/*if the macro &amp;amp;H resolves to some value, how many elements would this array contain?*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array wval {*} wsize ;&lt;STRONG&gt;/*looks like just one element here?why an array?*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; array val&amp;nbsp;&amp;nbsp; {*} size &lt;STRONG&gt;;/*looks like just one element here?why an array?*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;Sorry for the bother,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; background-color: #ffffff;"&gt;Charlotte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 17:16:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200132#M49973</guid>
      <dc:creator>CharlotteCain</dc:creator>
      <dc:date>2015-03-12T17:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200133#M49974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Charlotte,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In every case there would be one element in each array.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why an array?&amp;nbsp; Anybody's guess.&amp;nbsp; Perhaps this is a simple example, and the program sometimes uses a more complex set of values.&amp;nbsp; Sometimes I true to guess at the intent based on my experiences, but it's not always possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2015 17:29:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200133#M49974</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-03-12T17:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200134#M49975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you check proc means which can also get &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;winsorizing data ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 10:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200134#M49975</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-03-13T10:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can Someone Please Explain this Code to me?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200135#M49976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you check proc means which can also get &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;winsorizing data ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 10:17:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Can-Someone-Please-Explain-this-Code-to-me/m-p/200135#M49976</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-03-13T10:17:14Z</dc:date>
    </item>
  </channel>
</rss>

