Problem in plot when use RCall package

This question is not necessarily a question related to the julia language, but rather to the RCall package. I don’t know if the problem is with RCall or jupyter notebook either. I need to use Julia and R on the same notebook. In Rstudio the following script works perfectly:

#install.packages(‘fpp3’)
library(“fpp3”)
global_economy %>%
filter(Code == “CAF”) %>%
gg_tsdisplay(difference(Exports), plot_type=‘partial’)

But wen I use the Rcall:

R"“”
global_economy %>%
filter(Code == “CAF”) %>%
gg_tsdisplay(difference(Exports), plot_type=‘partial’)
“”"

I get the incomplete plot:

Some help?

Strange!
Would you be able to post your entire code here for the script you are using?
I could take a look potentially.

You can add just

install.packages(‘fpp3’)
library(“fpp3”)

inside the RCall script. It is sufficient to replicate the outputs.