The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Data Storage in RapidMiner
Hello,
i would like to know how data is stored in rapid miner if I import a csv file for example.
Is there an internal relational database in which the data is imported?
Do I need an external database like oracle when I work with a huge amount of data?
i would like to know how data is stored in rapid miner if I import a csv file for example.
Is there an internal relational database in which the data is imported?
Do I need an external database like oracle when I work with a huge amount of data?
0
Answers
data is either stored in the RAM of your computer or in the database you connected to.
Unfortunately all common relational databases do not support more than something around 1000 columns, which is to restrictive for many data mining applications. So sometimes you have to store your data in main memory.
If you have a realy huge amount of data, you will need an external database. This is simply the case if the data does not fit into your RAM. But be careful: The usage of most datamining algorithms is prohibitive with such huge example sets, since their runtime grows with the third power of number of examples. Use learners like NaiveBayes or Perceptron for such applications.
Greetings,
 Sebastian