Hi! I have a problem with ggplot2. When I use it to graph something, takes so much to do it. I don't know why that happen.
Here is an example:
> a <- seq(1,10,1)
> b <- seq(10,100,10)
> df <- data.frame(a,b)
> tictoc::tic()
> df %>% ggplot(aes(a,b)) + geom_line()
> tictoc::toc()
24.38 sec elapsed

I hope you can help me with that.
Regards