

Print(IrisPlot + myblanktheme + labs(title = "Petal and sepal \nlength of iris", y = "Petal length (cm)", x = "Sepal length (cm)")) Legend.text = element_text(face = "italic", colour = "steelblue4", family = "Helvetica"),Īxis.title = element_text(family = "Helvetica", size = (10), colour = "steelblue4"), Plot.title = element_text(family = "Helvetica", face = "bold", size = (15)),
ADD TITLE GGPLOT2 SCATTER PLOT CODE
The following code would remove the legend title and axis text.

To do this you use the code = element_blank(), remembering those open and closed brackets. For example, size = (3).Īnother option is to remove the text from the plot entirely. Remember to include “” before and after the colour name. the colour can be changed to any of the colours listed here. the type of emphasis, with options including bold, italic and “alic”. Examples of fonts include: “Palatino”, “Helvetica”, “Courier”, “Times”. The font, colour, size and emphasis of any of these labels can be altered by arguments within element_text(your format).

