Descargar graficos de Rstudio

Como puedo extraer un grafico de Rstudio a Excel sin que se Pixele

There are functions to export graphics to the formats bmp, tiff, png, jpeg. For example, this code writes a png file named Archivo_ggplot.png to the current directory.

png(file = "Archivo_ggplot.png")
ggplot(DF, aes(tmed, tmax)) + geom_point()
dev.off()

I suppose it would then be simple to import that png to Excel.

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.