<?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: basic problem in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433820#M107587</link>
    <description>&lt;P&gt;For numbers 1, 2 and 3, use PROC SUMMARY.&lt;/P&gt;</description>
    <pubDate>Sat, 03 Feb 2018 17:35:16 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-02-03T17:35:16Z</dc:date>
    <item>
      <title>basic problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433812#M107584</link>
      <description>&lt;P&gt;can some one help me with the code for this problem ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data trans;&lt;BR /&gt;input CustomerID transactiondate$ 10. amount category$;&lt;BR /&gt;cards;&lt;BR /&gt;9801234 10/01/1998 123.98 toys&lt;BR /&gt;9802234 12/10/1997 80.34 books&lt;BR /&gt;9802234 12/10/1997 100.00 apparel&lt;BR /&gt;9805556 08/01/1996 22.90 toys&lt;BR /&gt;9805556 09/10/1996 25.50 apparel&lt;BR /&gt;9805556 10/11/1996 18.90 books&lt;BR /&gt;9801134 11/11/1999 12.11 toys &lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Total and average amount spent by category&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Which category has the highest average purchase&lt;/LI&gt;&lt;LI&gt;What is the average number of categories that customers purchase&lt;/LI&gt;&lt;LI&gt;What is the average and total amount by customer&lt;/LI&gt;&lt;LI&gt;What is the average number of days between purchases (as of today)&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sat, 03 Feb 2018 16:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433812#M107584</guid>
      <dc:creator>hchan10</dc:creator>
      <dc:date>2018-02-03T16:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: basic problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433817#M107585</link>
      <description>&lt;P&gt;What code have you written?&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 17:14:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433817#M107585</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2018-02-03T17:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: basic problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433820#M107587</link>
      <description>&lt;P&gt;For numbers 1, 2 and 3, use PROC SUMMARY.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 17:35:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433820#M107587</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-02-03T17:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: basic problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433857#M107608</link>
      <description>&lt;P&gt;Here are some tutorial video's that will help you answer your question:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://video.sas.com/detail/videos/sas-analytics-u/video/3306906230001/summary-statistics-using-sas-studio?autoStart=true&amp;amp;page=1" target="_blank"&gt;http://video.sas.com/detail/videos/sas-analytics-u/video/3306906230001/summary-statistics-using-sas-studio?autoStart=true&amp;amp;page=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://video.sas.com/detail/videos/sas-analytics-u/video/4573023399001/creating-a-new-column-in-sas?autoStart=true&amp;amp;page=0" target="_blank"&gt;http://video.sas.com/detail/videos/sas-analytics-u/video/4573023399001/creating-a-new-column-in-sas?autoStart=true&amp;amp;page=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/186599"&gt;@hchan10&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;can some one help me with the code for this problem ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data trans;&lt;BR /&gt;input CustomerID transactiondate$ 10. amount category$;&lt;BR /&gt;cards;&lt;BR /&gt;9801234 10/01/1998 123.98 toys&lt;BR /&gt;9802234 12/10/1997 80.34 books&lt;BR /&gt;9802234 12/10/1997 100.00 apparel&lt;BR /&gt;9805556 08/01/1996 22.90 toys&lt;BR /&gt;9805556 09/10/1996 25.50 apparel&lt;BR /&gt;9805556 10/11/1996 18.90 books&lt;BR /&gt;9801134 11/11/1999 12.11 toys &lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Total and average amount spent by category&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Which category has the highest average purchase&lt;/LI&gt;
&lt;LI&gt;What is the average number of categories that customers purchase&lt;/LI&gt;
&lt;LI&gt;What is the average and total amount by customer&lt;/LI&gt;
&lt;LI&gt;What is the average number of days between purchases (as of today)&lt;/LI&gt;
&lt;/OL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 20:38:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/basic-problem/m-p/433857#M107608</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-03T20:38:04Z</dc:date>
    </item>
  </channel>
</rss>

