## # A tibble: 6 × 4
## `Course Taken` Frequency `Mean Age` `SD of Age`
## <chr> <int> <dbl> <dbl>
## 1 BS Biology 33 21.6 0.751
## 2 BS Civil Engineering 16 21.4 0.727
## 3 BS Electrical Engineering 17 21.6 0.618
## 4 BS Mathematics 33 21.7 0.924
## 5 BSED Biology 32 21.5 0.803
## 6 BSED English 32 21.6 0.878
## # A tibble: 6 × 6
## `Course Taken` Frequency `Mean Intrinsic5` Mean E…¹ Mean …² Mean …³
## <chr> <int> <dbl> <dbl> <dbl> <dbl>
## 1 BS Biology 33 4.94 5.27 3.88 NA
## 2 BS Civil Engineering 16 4.06 5.5 3.31 4.38
## 3 BS Electrical Engineering 17 4.35 5 3.47 3.71
## 4 BS Mathematics 33 4.27 5.39 3.55 3.52
## 5 BSED Biology 32 4.34 5.22 3.25 3.62
## 6 BSED English 32 4.19 5.66 3.91 3.03
## # … with abbreviated variable names ¹`Mean Extrinsic4`, ²`Mean TP3`,
## # ³`Mean CP3`
## `summarise()` has grouped output by 'In3'. You can override using the `.groups`
## argument.
## # A tibble: 5 × 3
## # Groups: In3 [1]
## In3 In4 count
## <chr> <chr> <int>
## 1 Strongly Agree Agree 9
## 2 Strongly Agree Disagree 2
## 3 Strongly Agree Moderately Agree 3
## 4 Strongly Agree Neutral 7
## 5 Strongly Agree Strongly Agree 12
## `summarise()` has grouped output by 'In3'. You can override using the `.groups`
## argument.
## # A tibble: 1 × 3
## # Groups: In3 [1]
## In3 In4 count
## <chr> <chr> <int>
## 1 Strongly Agree Neutral 7
Make a new variable named as “InAverage”, InAverage is the average of
the responses in the variables In1, In2, In3, In4, and In5.
Grouping: Group 1 with courses: BS Civil Engineering, BS Electrical
Engineering, and BS Mathematics
Group 2: BS Biology, BSED Biology, and BSED English
## # A tibble: 163 × 35
## Age Gender Course T…¹ In1 In2 In3 In4 In5 In6 In7 In8 Ex1
## <dbl> <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 22 Female BS Mathem… 4 3 2 1 4 7 6 7 4
## 2 23 Female BS Biology 6 6 4 4 4 5 4 7 4
## 3 20 Female BSED Engl… 5 5 3 3 2 6 5 7 5
## 4 22 Female BSED Biol… 4 5 4 3 3 6 6 7 5
## 5 23 Male BSED Engl… 7 6 5 5 4 6 4 7 7
## 6 22 Female BSED Biol… 6 6 6 6 6 7 7 7 7
## 7 20 Male BS Civil … 4 5 6 2 5 7 4 1 7
## 8 21 Female BS Electr… 5 6 5 6 5 7 6 7 7
## 9 21 Female BS Mathem… 6 7 5 5 5 7 7 7 7
## 10 22 Male BS Biology 6 7 5 6 7 7 7 7 5
## # … with 153 more rows, 23 more variables: Ex2 <dbl>, Ex3 <dbl>, Ex4 <dbl>,
## # Ex5 <dbl>, Ex6 <dbl>, Ex7 <dbl>, Ex8 <dbl>, Ex9 <dbl>, Ex10 <dbl>,
## # Ex11 <dbl>, TP1 <dbl>, TP2 <dbl>, TP3 <dbl>, TP4 <dbl>, TP5 <dbl>,
## # T6 <dbl>, CP1 <dbl>, CP2 <dbl>, CP3 <dbl>, CP4 <dbl>, CP5 <dbl>,
## # CTrecode <chr>, GroupofCourse <chr>, and abbreviated variable name
## # ¹`Course Taken`