<?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: Multiresponse Question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319275#M61877</link>
    <description>&lt;P&gt;Once data has been imported into SAS, the source becomes irrelevant. Just adapt variable names, and you're good.&lt;/P&gt;
&lt;P&gt;If you run into problems, post the code you already have, &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;example data&lt;/A&gt; and what the result should look like.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Dec 2016 15:11:23 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2016-12-15T15:11:23Z</dc:date>
    <item>
      <title>Multiresponse Question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319269#M61876</link>
      <description>&lt;P&gt;I have a dataset with a series of six variables (coded 0 for no and 1 for yes) related to one question about water use. In the survey, participants were told to select as many responses as were applicable. How can I code this so I see what % of participants chose each response or no responses? I've been able to find the answer for coded data (cards) but not for imported data (from excel).&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 14:49:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319269#M61876</guid>
      <dc:creator>berhard</dc:creator>
      <dc:date>2016-12-15T14:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiresponse Question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319275#M61877</link>
      <description>&lt;P&gt;Once data has been imported into SAS, the source becomes irrelevant. Just adapt variable names, and you're good.&lt;/P&gt;
&lt;P&gt;If you run into problems, post the code you already have, &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;example data&lt;/A&gt; and what the result should look like.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 15:11:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319275#M61877</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-12-15T15:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiresponse Question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319279#M61878</link>
      <description>&lt;P&gt;Basically, this is what it looks like in the codebook. As you can see, there are 0 for no and 1 for yes, the variables I want to look at are coded as wat_del_ip through wat_del_or. I want to create a table similar to the one second picture here, but have only been able to find code for data cards and not imported data.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13262i3AF7202265C2E9DB/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-12-15 at 9.01.49 AM.png" title="Screen Shot 2016-12-15 at 9.01.49 AM.png" /&gt;</description>
      <pubDate>Thu, 15 Dec 2016 15:03:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319279#M61878</guid>
      <dc:creator>berhard</dc:creator>
      <dc:date>2016-12-15T15:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiresponse Question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319281#M61879</link>
      <description>&lt;P&gt;Here's the codebook picture:&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13263iE026284802FFFF94/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screen Shot 2016-12-15 at 9.01.13 AM.png" title="Screen Shot 2016-12-15 at 9.01.13 AM.png" /&gt;</description>
      <pubDate>Thu, 15 Dec 2016 15:04:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319281#M61879</guid>
      <dc:creator>berhard</dc:creator>
      <dc:date>2016-12-15T15:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiresponse Question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319289#M61880</link>
      <description>&lt;P&gt;Since you are working with 0/1 variables, and they are already separate variables, you won't need any examples related to a multilabel format.&amp;nbsp; A simple PROC TABULATE can handle this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc tabulate;&lt;/P&gt;
&lt;P&gt;var wat_del_ip wat_del_or;&lt;/P&gt;
&lt;P&gt;tables wat_del_ip wat_del_or, sum='N' mean*f=percent8.1;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can change the label for the word 'Mean' is you prefer.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 15:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Multiresponse-Question/m-p/319289#M61880</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-12-15T15:11:07Z</dc:date>
    </item>
  </channel>
</rss>

