Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
R extension
Hi,
I've just installed the R extension. Looks very promising.
In my R console I have installed the "tm" package and would like to use its libraries and functions in RapidMiner. Any one knows how to call or install these libraries and functions in my RM Studio?
Thanks!
I've just installed the R extension. Looks very promising.
In my R console I have installed the "tm" package and would like to use its libraries and functions in RapidMiner. Any one knows how to call or install these libraries and functions in my RM Studio?
Thanks!
Tagged:
0
Answers
You need to install the R extension. Once you have, from within the RMStudio R console type the following (select a mirror site during the first step)
install.packages("tm")
library(tm)
This will make the tm functions available.
For example, typing this will load one of the built in text corpora.
data("acq")
str(acq)
regards
Andrew