A beginner's question.
I'm using R with dplyr
to analyse large amounts of data but I don't have access to a server-based database. In addition, my computer's internal hard drive is too small for the databases that I need to create. I have been using monetdblite
and RSQLite
to store the data so far.
Q: How much does the speed of monetdblite
/RSQLite
decrease in case I save the databases on an external hard drive and connect that to the computer via usb? What factors determine how feasible this is?
Or is there a better alternative approach (still relying on dplyr
's database connectivity) in my situation?