I want to annotate a plot where I will be displaying the maximum and minimum values for some plots. When I run the annotate statements individually they print the symbol on the plot correctly. But when I run it in a for loop and generate many plots for many values the symbols are turned into "???".
Please clarify what is the issue.
plot = plot + annotate("text", x = 35, y = 925, label = paste("↑","Max 2009/10",sep=""))
The plot is a part of the function the function loops on its arguments. So the plots getting generated are saved as png in a particular folder. The function and the call are in two different R Scripts
lapply(FUN = get_weather_details,X = list)