<?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: Running Proc means on a dataset in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756768#M30103</link>
    <description>No you do not need to convert to numeric, they're categorical variables so they go in the CLASS statement in PROC GLM.&lt;BR /&gt;&lt;BR /&gt;If you're using PROC REG then you need to manually create NEW dummy variables. For gender you could convert it directly, but for region you will need N-1 variables, with N being the number of distinct regions so the conversion isn't useful. I re-iterate. Go back to your import step and ensure your data types are read in correctly. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 26 Jul 2021 19:26:51 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-07-26T19:26:51Z</dc:date>
    <item>
      <title>Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756717#M30090</link>
      <description>&lt;P&gt;For an assignment I am completing, our class is required to run the proc means procedure on a dataset in order to produce descriptive statistics about the dataset. However, some of the variables that I want to get descriptive statistics on will not work properly. I get an error message that says:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasError"&gt;ERROR: Variable gender in list does not match type prescribed for this list.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Variable region in list does not match type prescribed for this list.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Here is an attached link showing the dataset that I am using.&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2021-07-26 at 1.05.48 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61701i1D15DE431F6E0A4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2021-07-26 at 1.05.48 PM.png" alt="Screen Shot 2021-07-26 at 1.05.48 PM.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2021-07-26 at 1.05.57 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61702i2BD0A360E7C0F571/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2021-07-26 at 1.05.57 PM.png" alt="Screen Shot 2021-07-26 at 1.05.57 PM.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;I'm not sure if the fact that some variables only have 0,1,2,3 as options is causing proc means to not run correctly or what? Any help would be appreciated. Thank you&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Also. When I run proc means and don't specify which variables I want to run it for. The output produced leaves off 3 of the variables that I need statistics for.&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:08:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756717#M30090</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T17:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756720#M30091</link>
      <description>Those are screenshots from a different application, not SAS (Numbers?)&lt;BR /&gt;&lt;BR /&gt;Either way, what this means is when you imported the data certain variables were imported as character values instead of numeric variables. It doesn't make sense to do summary statistics on character variables. So you need to go back to your data import step and fix your import code so that imports your data as numeric. &lt;BR /&gt;&lt;BR /&gt;If you used PROC IMPORT see the code that is generated in the log and modify it according or write your own data step to import the data correctly. You can convert it after the fact but that's more work and it's not a good idea. PROC IMPORT is a guessing procedure so if you had to repeat this process you cannot guarantee that the next time you import the data you will have the same types assigned which would make this an ongoing problem.</description>
      <pubDate>Mon, 26 Jul 2021 17:13:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756720#M30091</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-26T17:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756722#M30092</link>
      <description>&lt;P&gt;I'm not sure how to change certain variables to numeric. Or how to import the dataset again and specify that I want all variables to be numeric.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756722#M30092</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T17:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756726#M30093</link>
      <description>How did you import your data?&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:34:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756726#M30093</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-26T17:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756728#M30094</link>
      <description>&lt;P&gt;There is no point in importing again, you can work with the existing SAS data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
    set old;
    gender_numeric = input(gender,2.);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This converts gender to numeric 0s and 1s. If you compute the mean, this is actually the percent of records that are 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It makes no logical sense to convert region to numeric and then run PROC MEANS on it. So don't do that.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756728#M30094</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-26T17:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756730#M30095</link>
      <description>&lt;P&gt;I imported the data using proc import. But I also tried to manually import the data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My variables are already listed in the graphical output that was displayed after I imported the dataset as "0" or "1" and sometimes even "3" and "4" and so on.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However when I looked at the graph, certain variables were imported as characters rather than numeric&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756730#M30095</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T17:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756732#M30096</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/378638"&gt;@u58469353&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I imported the data using proc import. But I also tried to manually import the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My variables are already listed in the graphical output that was displayed after I imported the dataset as "0" or "1" and sometimes even "3" and "4" and so on.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However when I looked at the graph, certain variables were imported as characters rather than numeric&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Show us a screen capture of what you are seeing. Otherwise, these words are not helping.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To show us a screen capture, please click on the "Insert Photos" icon. Do not provide file attachments.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:40:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756732#M30096</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-26T17:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756733#M30097</link>
      <description>&lt;P&gt;The two variables you mention as being character are not variables you would want to run PROC MEANS on anyway.&lt;/P&gt;
&lt;P&gt;To see the distribution of GENDER and REGION you should probably just use PROC FREQ instead.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 17:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756733#M30097</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-07-26T17:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756739#M30098</link>
      <description>&lt;P&gt;So I got Paige Miller's suggestion to work. However when I use this code it only produces one of the new variables at a time. I can see gender_new on the graphical output that is displayed. However, I need gender_numeric and region_numeric to both be displayed at the same time and on the same graphical output where they are showing on the table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 18:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756739#M30098</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T18:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756740#M30099</link>
      <description>&lt;P&gt;You seem to have missed the point. Computing means of region_numeric is meaningless. A waste of time. Don't bother.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As stated above by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;, use PROC FREQ on region.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 18:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756740#M30099</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-26T18:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756741#M30100</link>
      <description>Actually, if you look really closely at the file note that the fields Gender and Region have the values aligned to the left, where numeric values are aligned to the right. This indicates your source data for some reason is thinking the file has Region and Gender coded as character variables. Those values should not be numerically summarized as the average region or average gender don't convey super useful information. Average gender would tell you the percentage of Males but PROC FREQ does that as well.</description>
      <pubDate>Mon, 26 Jul 2021 18:09:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756741#M30100</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-26T18:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756743#M30101</link>
      <description>&lt;P&gt;Ok, thanks for all of your help. I really appreciate it. I'm completely new to SAS so I may be misunderstanding the instructions of the assignment&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 18:11:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756743#M30101</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T18:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756766#M30102</link>
      <description>&lt;P&gt;So I need these variables to be in numeric form so that I can perform multiple linear regression using these variables. I'm still encountering the problem when I use this code to change a variable to numeric form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
    set work.import;
    gender_numeric = input(gender,2.);
data new;
	set work.import;
	region_numeric = input(region,4.);
data new;
	set work.import;
	marital_numeric = input(marital,2.);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The issue I run into is that only the last variable I enter shows up in the dataset as a numeric variable. In this case, the marital_numeric variable appears. But the region_numeric and the gender_numeric variables are not showing up. However, if I only do one at a time I am able to use them for graphs and regressions. But I need all 3 of them together to perform a multiple linear regression model.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756766#M30102</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T19:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756768#M30103</link>
      <description>No you do not need to convert to numeric, they're categorical variables so they go in the CLASS statement in PROC GLM.&lt;BR /&gt;&lt;BR /&gt;If you're using PROC REG then you need to manually create NEW dummy variables. For gender you could convert it directly, but for region you will need N-1 variables, with N being the number of distinct regions so the conversion isn't useful. I re-iterate. Go back to your import step and ensure your data types are read in correctly. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756768#M30103</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-26T19:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756770#M30104</link>
      <description>&lt;P&gt;Thanks for your reply. I am completely new to SAS coding. So honestly I'm not sure how to perform the suggestions you are telling me about. When I used the code I just posted, it does change the variables to numeric and I have no issues with completing to multiple linear regression. At first ,the dataset I imported did contain 3 variables that showed up as characters rather than numeric, and they are causing me problems.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756770#M30104</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T19:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756772#M30105</link>
      <description>&lt;P&gt;How would I ensure that the data types are read in correctly when importing the dataset?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756772#M30105</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T19:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756773#M30106</link>
      <description>From my original post: If you used PROC IMPORT see the code that is generated in the log and modify it according or write your own data step to import the data correctly.&lt;BR /&gt;&lt;BR /&gt;I'm assuming you can look at the code and figure out the difference between the character and numeric variables and change it but if you're having difficulties post the code.</description>
      <pubDate>Mon, 26 Jul 2021 19:32:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756773#M30106</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-26T19:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756774#M30107</link>
      <description>&lt;PRE&gt;/* Generated Code (IMPORT) */
/* Source File: MIS445TelcoExtraCSU-Global.xlsx */
/* Source Path: /home/u58469353/MIS445 */
/* Code generated on: 7/26/21, 1:26 PM */

%web_drop_table(WORK.IMPORT);


FILENAME REFFILE '/home/u58469353/MIS445/MIS445TelcoExtraCSU-Global.xlsx';

PROC IMPORT DATAFILE=REFFILE
	DBMS=XLSX
	OUT=WORK.IMPORT;
	GETNAMES=YES;
RUN;

PROC CONTENTS DATA=WORK.IMPORT; RUN;


%web_open_table(WORK.IMPORT);&lt;/PRE&gt;&lt;P&gt;This is the code I used to import the dataset.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756774#M30107</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T19:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756775#M30108</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/378638"&gt;@u58469353&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;So I need these variables to be in numeric form so that I can perform multiple linear regression using these variables. I'm still encountering the problem when I use this code to change a variable to numeric form.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
    set work.import;
    gender_numeric = input(gender,2.);
data new;
	set work.import;
	region_numeric = input(region,4.);
data new;
	set work.import;
	marital_numeric = input(marital,2.);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The issue I run into is that only the last variable I enter shows up in the dataset as a numeric variable. In this case, the marital_numeric variable appears. But the region_numeric and the gender_numeric variables are not showing up. However, if I only do one at a time I am able to use them for graphs and regressions. But I need all 3 of them together to perform a multiple linear regression model.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It should be pretty obvious from the SAS log what is wrong with that code.&amp;nbsp; You keep overwriting the dataset NEW with a different version so only the last version is available for further use.&amp;nbsp; Just put all of the assignment statements in one data step.&amp;nbsp; Also get in the habit of explicitly ending your steps.&amp;nbsp; It will reduce your confusion.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
  set work.import;
  gender_numeric = input(gender,2.);
  region_numeric = input(region,4.);
  marital_numeric = input(marital,2.);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756775#M30108</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-07-26T19:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running Proc means on a dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756778#M30109</link>
      <description>&lt;P&gt;Thank you so much. I am trying to learn. I appreciate it&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jul 2021 19:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Running-Proc-means-on-a-dataset/m-p/756778#M30109</guid>
      <dc:creator>u58469353</dc:creator>
      <dc:date>2021-07-26T19:42:44Z</dc:date>
    </item>
  </channel>
</rss>

