What is the best storage for R programming

I have a scenario to place all my research data for statistical analysis using R language

what would be the best place to store research data in RDBMS or AWS S3 ?

Note : Later I will process the data using R algorithm

What technology to use for storing your data depends on the nature of it not so much on what language you are going to use to analyze it. If it is structured data a RDBMS is a good option, if your data is semi-structured then a document-oriented database like Mongodb for example is a better choice, but if it is unstructured data and you are planning on a ELT process (i.e. Transform your raw data later) then AWS S3 or a data lake would be better.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.