Hello,
I have a plot, and I want to remove the bold from the title that seems to appear automatically... Any help would be appreciated. Thanks in advance
relevance_plot <- relevance_data %>%
ggplot(aes(x = Condition, y = relevance_comp)) +
labs(title = "Figure 5. Mean average relevance rating for Relevance Scale question and condition.", x = "Text Condition", y = "Mean Relavance Rating") +
theme_cowplot()
relevance_plot +
geom_point(position = "jitter")
relevance_plot +
geom_point(stat = "summary",
fun.y = "mean")
relevance_plot +
geom_point(stat = "summary",
fun.y = "mean",
size = 4,
shape = 21,
fill = "black") +
ylim(0, 7) +
stat_summary(fun.data="mean_cl_boot",geom="errorbar", width = .25)
relevance_plot_final <- relevance_plot +
stat_summary(fun.data="mean_cl_boot",geom="errorbar", width = .25) +
geom_point(stat = "summary",
fun.y = "mean",
size = 4,
shape = 21,
fill = "black") +
plot(font.main = 1, main = "Foo") +
ylim(0, 7) +
theme(text=element_text(family="Times New Roman", size=12))
relevance_plot_final