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?