<?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 create an accurate scoring method? in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598269#M18254</link>
    <description>&lt;P&gt;Have you done any distribution analysis (simple Proc Freq to start with) on that raw "need" variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of if your survey data comes from a sample that had a complex sample, Proc Survey Freq?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would expect that may give you some idea of where to place break points for categories. If you have a very large range of "need" responses you may want to look at the percentiles as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you likely would not need to add any variables for the other analysis, create a custom format or two and use the format in the analysis.&lt;/P&gt;
&lt;P&gt;The format might look like this:&lt;/P&gt;
&lt;PRE&gt;Proc format library=work;
value needscore
0 - 1 = 'Low'
2 - 5 = 'Medium'
6 - high = 'High'
;
run;&lt;/PRE&gt;
&lt;P&gt;You don't mention anything about actual range of values or number of respondents. I would suggest if you want to have something moderately sensitive when split across race or age groups that you set ranges likely to keep at least 5 if not 10 respondents in each "need" interval.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Oct 2019 21:20:03 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-10-21T21:20:03Z</dc:date>
    <item>
      <title>How do create an accurate scoring method?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598265#M18252</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure how to phrase my question. So I have a survey data set that I am analyzing. I have a variable that holds the count of how many times a survey participant indicated they "needed" a service. My goal is to create a "needs score" of some sort to categorize the sample in a way so I can have a group who is high, medium, and low need. I also want to cross this needs score with demographics such as race gender age etc, eventually (perhaps some chi-square analysis as well?). How should I go about this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate any suggestions you have!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Michelle&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 20:50:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598265#M18252</guid>
      <dc:creator>Missmichelle</dc:creator>
      <dc:date>2019-10-21T20:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do create an accurate scoring method?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598268#M18253</link>
      <description>&lt;P&gt;Hi, Michelle&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First question, are you planning to do this completely within a tool like Enterprise Guide, or are you comfortable with SAS language programming?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next, we really need to get a bit better idea of what you're dealing with. Please show us what your data looks like, and what your desired result looks like. Use text, not a picture, so we can cut and paste it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 21:14:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598268#M18253</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2019-10-21T21:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do create an accurate scoring method?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598269#M18254</link>
      <description>&lt;P&gt;Have you done any distribution analysis (simple Proc Freq to start with) on that raw "need" variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of if your survey data comes from a sample that had a complex sample, Proc Survey Freq?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would expect that may give you some idea of where to place break points for categories. If you have a very large range of "need" responses you may want to look at the percentiles as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you likely would not need to add any variables for the other analysis, create a custom format or two and use the format in the analysis.&lt;/P&gt;
&lt;P&gt;The format might look like this:&lt;/P&gt;
&lt;PRE&gt;Proc format library=work;
value needscore
0 - 1 = 'Low'
2 - 5 = 'Medium'
6 - high = 'High'
;
run;&lt;/PRE&gt;
&lt;P&gt;You don't mention anything about actual range of values or number of respondents. I would suggest if you want to have something moderately sensitive when split across race or age groups that you set ranges likely to keep at least 5 if not 10 respondents in each "need" interval.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 21:20:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-create-an-accurate-scoring-method/m-p/598269#M18254</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-10-21T21:20:03Z</dc:date>
    </item>
  </channel>
</rss>

