Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Graph dot

    I have several variables from a teacher survey that were given ratings of 1-5 using a Likert-type scale. As I attempt to graph the mean responses using the graph dot command, the x axis scale shows 0-5, which technically isn't possible because the rating scale is 1-5. I've tried several approaches to revising the scale range to begin at 1, but nothing works. Any ideas on how I can remove the 0 and have the axis begin at 1?


    graph dot i_adjust_r i_multi_r i_motiv_r i_goals_r i_confident_r , ascategory ///
    title("Average Instructional Improvement Ratings", span) ///
    subtitle("Teacher Survey, 2019", span) ///
    b2title("Likert Scale Rating")

    Thanks in advance for your input.



    Attached Files

  • #2
    Code:
    exclude0 ylabel(1(1)5)

    Comment


    • #3
      Perfect, thanks!

      Comment

      Working...
      X