↧
Answer by Jon Spring for Difficulty plotting 4 non-numeric variables
library(tidyverse)ggplot(DF |> mutate(Majors = factor(Majors) |> fct_inorder(), MEASURES = factor(MEASURES) |> fct_rev()), aes(Majors, MEASURES, label = LCOs, color = Years)) + geom_text() +...
View ArticleDifficulty plotting 4 non-numeric variables
I have data like this:DF <- data.frame(Majors = c('Sam', 'Bob', 'Henry', 'John', 'Ted', 'Carl', 'Robert', 'Matt', 'Jared', 'Jack', 'Greg', 'Arthur', 'Glenn'), MEASURES = c('A', 'B', 'C', 'D', 'E',...
View Article
More Pages to Explore .....