ipeadata-lab / ipeaplot

ipeaplot: criando graficos no padrão editorial do Ipea
https://ipeadata-lab.github.io/ipeaplot/
Other
2 stars 0 forks source link

Erro em save_eps(): unknown family 'Frutiger-LT-47-LightCn' #26

Closed rafapereirabr closed 1 year ago

rafapereirabr commented 1 year ago

Reprodução do erro abaixo:

library(ggplot2)
library(ipeaplot)

data("mtcars")

fig_base <- ggplot() +
            geom_point(data = mtcars, aes(x = hp , y = mpg, color = cyl)) +
            labs(y='Consumo de Combustível (milhas por galão)',
                 x ='Potência (Número de cavalos)',
                 color='Cilindradas') +
            scale_color_ipea() +
            theme_ipea()
fig_base

save_eps(fig_base, 
         file.name = "fig_base.eps")

Dá o erro:

Error in grDevices::postscript(file = file.name, family = "Frutiger-LT-47-LightCn") : unknown family 'Frutiger-LT-47-LightCn'

PedroJorge7 commented 1 year ago

Removi o argumento family = "Frutiger-LT-47-LightCn" já que já incluímos ele dentro do theme