<?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 to create summary statistic for key variables in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610254#M76753</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS log error.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34545i2389169488C0E370/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS log error.PNG" alt="SAS log error.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 08 Dec 2019 03:45:17 GMT</pubDate>
    <dc:creator>dunns3</dc:creator>
    <dc:date>2019-12-08T03:45:17Z</dc:date>
    <item>
      <title>how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610238#M76742</link>
      <description>&lt;P&gt;Please help me to create this I am new data=coke&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 02:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610238#M76742</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T02:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610239#M76743</link>
      <description>&lt;P&gt;try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=sashelp.class n mean median std max min;
var weight height;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 08 Dec 2019 02:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610239#M76743</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T02:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610241#M76744</link>
      <description>&lt;P&gt;Could you help me how to do this?&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Open the data file and examine the contents on key variables (coke, pr_pepsi, pr_coke, disp_pepsi, disp_coke, pratio)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;'/courses/d29c2855ba27fe300/coke'&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create summary statistics for key variables (coke, pr_pepsi, pr_coke, disp_pepsi, disp_coke, pratio&lt;/LI&gt;&lt;LI&gt;Thank you!&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:01:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610241#M76744</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610243#M76745</link>
      <description>&lt;P&gt;hope you have a sas dataset with the data and the key variables are all numeric , then you can try the below code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=coke noprint;
var coke pr_pepsi pr_coke disp_pepsi disp_coke pratio;
output out=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:06:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610243#M76745</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610244#M76746</link>
      <description>&lt;P&gt;Yes, I have all the data I just don't know how to do it because I am new with SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610244#M76746</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610245#M76747</link>
      <description>Could you check if you have the data in SAS dataset sas7bdat. extension, or you are trying to pull the data into sas from any other file like excel.</description>
      <pubDate>Sun, 08 Dec 2019 03:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610245#M76747</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610246#M76748</link>
      <description>&lt;P&gt;Yes, I have it on the sets of rows there numeric for pratio, coke and pepsi, I'm using SAS program and I have all these questions but I don't have the code it's hard to follow the textbook and SAS confuses me because when I try to search it giving me hundreds of answer.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610246#M76748</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610248#M76749</link>
      <description>&lt;P&gt;Is not working there are log errors stating the variables not found.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:30:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610248#M76749</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610249#M76750</link>
      <description>ok could you please share the screen shot of the dataset</description>
      <pubDate>Sun, 08 Dec 2019 03:31:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610249#M76750</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610251#M76751</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CaptureSAScoke.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34544iEF2A1AA6BDE0B63D/image-size/large?v=v2&amp;amp;px=999" role="button" title="CaptureSAScoke.PNG" alt="CaptureSAScoke.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610251#M76751</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610252#M76752</link>
      <description>Thank you , could you also send the screenshot of the log with errors</description>
      <pubDate>Sun, 08 Dec 2019 03:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610252#M76752</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610254#M76753</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS log error.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34545i2389169488C0E370/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS log error.PNG" alt="SAS log error.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:45:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610254#M76753</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610255#M76754</link>
      <description>I believe you should use the dataset coke instead of cokeout&lt;BR /&gt;&lt;BR /&gt;like below &lt;BR /&gt;&lt;BR /&gt;proc means data=coke noprint;&lt;BR /&gt;var coke pr_pepsi pr_coke;&lt;BR /&gt;output out=want;&lt;BR /&gt;run;</description>
      <pubDate>Sun, 08 Dec 2019 03:51:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610255#M76754</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610256#M76755</link>
      <description>&lt;P&gt;do you know how to how to create data set containing the parameter estimates of the regression?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:56:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610256#M76755</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T03:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610257#M76756</link>
      <description>Please check this link below for details, it has the code , you can try this once if you need more details please post &lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://stats.idre.ucla.edu/sas/output/regression-analysis/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/output/regression-analysis/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 08 Dec 2019 03:58:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610257#M76756</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-12-08T03:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to create summary statistic for key variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610258#M76757</link>
      <description>&lt;P&gt;Thank you so much, you are very helpful.&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Dec 2019 04:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-create-summary-statistic-for-key-variables/m-p/610258#M76757</guid>
      <dc:creator>dunns3</dc:creator>
      <dc:date>2019-12-08T04:00:07Z</dc:date>
    </item>
  </channel>
</rss>

