BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
mitrakos
Obsidian | Level 7

Hi Everyone,

 

I have been tasked with looking at the results of a survey for this year and seeing what characteristics are associated with the lowest scores of the survey. These characteristics include multiple demographic variables, as well as other characteristics specific to the survey itself. We are looking at three specific questions.

 

To expand on low scorers, this survey is scored via top-box scoring. What that means is that for each question there is one (or multiple for rating scale questions) response that is dignified as the most optimal answer for the participant to answer with. Therefore, for seeing what characteristics are associated with low scoring, we are looking at characteristics that have the lowest percentage of top-box scoring for that item. This survey is a feedback survey, which is why there are optimal responses for participants to have.

 

I am thinking this just seems like a simple item analysis that I can conduct, but I just want to run it by this community because it has helped me so much in the past in case I am under (or over) thinking it. Thank you so much!!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

If you have a numeric score calculated for each observation I might start with something like:

proc freq data=have;
   tables score*var1*var2*var3 /list missing;
run;

By default the score variable would appear in increasing order so the lower scores, which you state are of interest would appear first. Then the levels of the other three variables of interest associated with each score.

 

This is exploratory in nature to get a feel for the data. If your set is "small" it may provide everything you need.

It might point to 2 levels of one of the Vars as similar (or 6 or whatever).

View solution in original post

2 REPLIES 2
ballardw
Super User

If you have a numeric score calculated for each observation I might start with something like:

proc freq data=have;
   tables score*var1*var2*var3 /list missing;
run;

By default the score variable would appear in increasing order so the lower scores, which you state are of interest would appear first. Then the levels of the other three variables of interest associated with each score.

 

This is exploratory in nature to get a feel for the data. If your set is "small" it may provide everything you need.

It might point to 2 levels of one of the Vars as similar (or 6 or whatever).

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 450 views
  • 0 likes
  • 2 in conversation