I'm trying to change the factor names because they appear too long on the plot.
Codes:
levels(class_survey) <- list(None = "None.", Very_Little = "Very little. I've just dipped my toe in.",
Bit = "A bit. I've used coding in a limited capacity, such as for a small",
Some = "Some. I've had to write code for one or two classes and am co",
Good_Deal = "A good deal. I have several years of experience writing code.")
and I"m trying to make them appear in my actual plot, but I can't figure out how.
ggplot(class_survey, aes(x = Coding_Exp_Words, y = Coding_Exp_Scale)) + geom_jitter()
Coding_Exp_words
is the data column whose label names I'm trying to change their label names.
.