<?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: How do I create a new variable like using proc means? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504893#M1048</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/240820"&gt;@lcsitl&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My code is basically that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=Daily nonobs ;
class Name Latitude Longitude Elevation Year Month;
var TAvg TMax TMin;
output out=Monthly mean(TAvg) = MeanAvg mean(TMax)=MeanMax mean(TMin)=MeanMin;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas output.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24059i7C248CB4E4991281/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas output.jpg" alt="sas output.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;But it gives me this output ^^, and for what I need moving forward, I need this output to have been 3 rows, not 9, with the added columns of TAvg, TMax, and TMin. I can't figure out how to get there. It seems like it should be easier than it is proving.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Notice that I used &lt;STRONG&gt;PROC SUMMARY. &lt;/STRONG&gt;While the syntax is similar the output dataset structure by default is different. Try it and see.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Oct 2018 20:59:44 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-10-16T20:59:44Z</dc:date>
    <item>
      <title>How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504866#M1041</link>
      <description>&lt;P&gt;I am trying to create a table from a VERY large dataset.&amp;nbsp; I have several variables that need to be included (city, lat, long, year, month) and some I want to calculate. I have daily data with an avg, min and max for each day&lt;BR /&gt;ie:&lt;/P&gt;&lt;P&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Long&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Month&amp;nbsp; &amp;nbsp; &amp;nbsp;Year&amp;nbsp; &amp;nbsp; &amp;nbsp; Max&amp;nbsp; &amp;nbsp; &amp;nbsp; Min&amp;nbsp; &amp;nbsp; &amp;nbsp;Average&lt;BR /&gt;Shaoguan&amp;nbsp; &amp;nbsp; 01/01/2000&amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 59&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 21&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; 01/02/2000&amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 63&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 49&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to make a table that sorts by name (and keeps the corresponding lat &amp;amp; long), then by year, then by month, and that does away with the daily figures and just shows the average of max, min, and average for each month.&amp;nbsp; I get this information via proc means, but the table format is not what I need.&amp;nbsp; I want to add the average of each of the min, max and avg variables as new columns, rather than the way they display as rows in proc means.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need a final result like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Long&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Month&amp;nbsp; &amp;nbsp; &amp;nbsp;Year&amp;nbsp; &amp;nbsp; &amp;nbsp; AvgMax&amp;nbsp; &amp;nbsp; &amp;nbsp; AvgMin&amp;nbsp; &amp;nbsp; &amp;nbsp;AvgAverage&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;59&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 21&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Feb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 54&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;18&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 37&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 20:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504866#M1041</guid>
      <dc:creator>lcsitl</dc:creator>
      <dc:date>2018-10-16T20:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504870#M1043</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/240820"&gt;@lcsitl&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to create a table from a VERY large dataset.&amp;nbsp; I have several variables that need to be included (city, lat, long, year, month) and some I want to calculate. I have daily data with an avg, min and max for each day&lt;BR /&gt;ie:&lt;/P&gt;
&lt;P&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Long&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Month&amp;nbsp; &amp;nbsp; &amp;nbsp;Year&amp;nbsp; &amp;nbsp; &amp;nbsp; Max&amp;nbsp; &amp;nbsp; &amp;nbsp; Min&amp;nbsp; &amp;nbsp; &amp;nbsp;Average&lt;BR /&gt;Shaoguan&amp;nbsp; &amp;nbsp; 01/01/2000&amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 59&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 21&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; 01/02/2000&amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 63&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 49&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to make a table that sorts by name (and keeps the corresponding lat &amp;amp; long), then by year, then by month, and that does away with the daily figures and just shows the average of max, min, and average for each month.&amp;nbsp; I get this information via proc means, but the table format is not what I need.&amp;nbsp; I want to add the average of each of the min, max and avg variables as new columns, rather than the way they display as rows in proc means.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need a final result like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Lat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Long&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Month&amp;nbsp; &amp;nbsp; &amp;nbsp;Year&amp;nbsp; &amp;nbsp; &amp;nbsp; AvgMax&amp;nbsp; &amp;nbsp; &amp;nbsp; AvgMin&amp;nbsp; &amp;nbsp; &amp;nbsp;AvgAverage&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;59&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 21&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Shaoguan&amp;nbsp; &amp;nbsp; &amp;nbsp; 24.667&amp;nbsp; &amp;nbsp;113.6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Feb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 54&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;18&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 37&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Naming your variables max and min makes for ugly variable names in combinations.&lt;/P&gt;
&lt;P&gt;If you showed the proc means code you used it likely only needs a small change. I would start here:&lt;/P&gt;
&lt;PRE&gt;proc summary data=have nway;
  class name lat long  month year;
  var max min average;
  output out=want mean= / autoname;
run;&lt;/PRE&gt;
&lt;P&gt;The output set has two variables _freq_ and _type_ that you might drop. The _freq_ is how many records were used for calculating stats on that record and _type_ indicates combinations of class variables. The NWAY&amp;nbsp; on the Proc statement says to only have the output for combinations containing values for all of the class variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 20:24:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504870#M1043</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-16T20:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504874#M1044</link>
      <description>&lt;P&gt;My code is basically that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=Daily nonobs ;
class Name Latitude Longitude Elevation Year Month;
var TAvg TMax TMin;
output out=Monthly mean(TAvg) = MeanAvg mean(TMax)=MeanMax mean(TMin)=MeanMin;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas output.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24059i7C248CB4E4991281/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas output.jpg" alt="sas output.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;But it gives me this output ^^, and for what I need moving forward, I need this output to have been 3 rows, not 9, with the added columns of TAvg, TMax, and TMin. I can't figure out how to get there. It seems like it should be easier than it is proving.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 20:35:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504874#M1044</guid>
      <dc:creator>lcsitl</dc:creator>
      <dc:date>2018-10-16T20:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504893#M1048</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/240820"&gt;@lcsitl&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My code is basically that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=Daily nonobs ;
class Name Latitude Longitude Elevation Year Month;
var TAvg TMax TMin;
output out=Monthly mean(TAvg) = MeanAvg mean(TMax)=MeanMax mean(TMin)=MeanMin;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas output.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24059i7C248CB4E4991281/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas output.jpg" alt="sas output.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;But it gives me this output ^^, and for what I need moving forward, I need this output to have been 3 rows, not 9, with the added columns of TAvg, TMax, and TMin. I can't figure out how to get there. It seems like it should be easier than it is proving.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Notice that I used &lt;STRONG&gt;PROC SUMMARY. &lt;/STRONG&gt;While the syntax is similar the output dataset structure by default is different. Try it and see.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 20:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504893#M1048</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-16T20:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504905#M1051</link>
      <description>&lt;P&gt;Oh, jeeze, yes, I see. Thank you!&lt;BR /&gt;That is so close to helping, except the table output is 128 rows, only the last 3 are what I want. And that's with the sample I'm running with only 63 rows to start (what I will ultimately be processing is about a million rows.. It's like it's spitting out all possible combinations of the class variables. I have tried moving them around or eliminating them, but I still don't get what I need, without losing things I do.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p1.png" style="width: 469px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24064iBCB6803985FA19F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="p1.png" alt="p1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p2.png" style="width: 507px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24065i72464FDB4DA4457C/image-size/large?v=v2&amp;amp;px=999" role="button" title="p2.png" alt="p2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The 3 rows of data in the red square is all I want.&lt;/P&gt;&lt;P&gt;I have been fooling around with proc tabulate as an alternative, but that gives a way more complicated result than I want.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 21:21:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/504905#M1051</guid>
      <dc:creator>lcsitl</dc:creator>
      <dc:date>2018-10-16T21:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a new variable like using proc means?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/505303#M1129</link>
      <description>&lt;P&gt;Details. Please look at the code I showed as an example and see if something is different in yours:&lt;/P&gt;
&lt;PRE&gt;proc summary data=have &lt;FONT size="5"&gt;&lt;STRONG&gt;&lt;FONT color="#3366ff"&gt;nway&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;;
  class name lat long  month year;
  var max min average;
  output out=want mean= / autoname;
run;&lt;/PRE&gt;
&lt;P&gt;NWAY says to only take the records with all of the combinations present.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have apparently dropped the _TYPE_ variable that would have provided a clue as to which records you wanted for further processing.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 19:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-create-a-new-variable-like-using-proc-means/m-p/505303#M1129</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-17T19:30:46Z</dc:date>
    </item>
  </channel>
</rss>

