# A tibble: 12 × 2
month temp
<chr> <dbl>
1 Jan 50
2 Feb 54
3 Mar 62
4 Apr 72
5 May 78
6 Jun 85
7 Jul 89
8 Aug 88
9 Sep 81
10 Oct 71
11 Nov 62
12 Dec 53
October 16, 2025
01. What is a Likert-type scale?
02. How can I visualize Likert scale data?
03. What are the pros and cons of each approach?
04. How do I implement these approaches in {ggplot2}?
Rating system method used to evaluate opinions and attitudes
Can be bipolar or unipolar
Pros
Cons
Pros
Cons
Pros
Cons
Factors are categorical variables stored as integers, but displayed as characters (they have a set order)
Without factoring
Using factor()
# A tibble: 12 × 2
month temp
<fct> <dbl>
1 Jan 50
2 Feb 54
3 Mar 62
4 Apr 72
5 May 78
6 Jun 85
7 Jul 89
8 Aug 88
9 Sep 81
10 Oct 71
11 Nov 62
12 Dec 53
Using fct_inorder()
Using fct_reorder()
See https://r4ds.hadley.nz/factors.html for more on factors