How to use UTF-8 characters in dygraph title in R
Using Rstudio [Windows8], when I use the dygraph function to plot a time series, I have a problem when trying to use UTF-8 characters in the main title. library(dygraphs) dygraph(AirPassengers, main = "Título") This results in a title: "T?tulo" I have tried to convert "Título" to the utf-8 enconding, but it doesn't work. You need to make sure your locale settings support the character that you want to use, and that the file is saved with the right encoding. Saving as UTF-8 worked for me. I was able to replicate your situation in Windows 7 and tried a bunch of things. Embedded in Rmarkdown,