Questions tagged [rattle]

Rattle is a graphical user interface for data mining in R

Rattle (the R Analytic Tool To Learn Easily) provides a Gnome (RGtk2) based interface to R functionality for data mining. The aim is to provide a simple and intuitive interface that allows a user to quickly load data from a CSV file (or via ODBC), transform and explore the data, build and evaluate models, and export models as PMML (predictive modelling markup language) or as scores. All of this with knowing little about R.

77 questions
0
votes
1 answer

Building Rpart Data Tree Error Invalid Type(list)

I am new to coding and I am trying to build a data tree, but I keep encountering the same error: Error in model.frame.default(formula = df ~ df$Open.Closed + df$Region, : invalid type (list) for variable 'df' I have looked throughout the site and…
Divo
  • 1
  • 2
0
votes
0 answers

Using the Rattle GUI for R

Just started playing with Rattle. I loaded it into R studio and there does not seem to be any problems. Just wondering I am uploading the latest version of the weather dB from a csv file. when I go to EXPLORE the additional features like…
0
votes
0 answers

Determining time frame for predictive model results

I am building a predictive model with Rattle in R and I was wondering how to interpret the results. I have the scoring done and I have that data but how do I know the time frame for those results? Ex. Are they the predicted results for the next 4…
Joe
  • 9
  • 6
0
votes
3 answers

Warning in install.packages : package ‘rattle’ is not available (for R version 3.4.4)

I was trying to install.packages("rattle") but it shows this : Installing package into ‘/home/shahin/R/x86_64-pc-linux-gnu-library/3.4’ (as ‘lib’ is unspecified) Warning in install.packages : package ‘rattle’ is not available (for R version…
Sahadat Hossain
  • 2,470
  • 2
  • 6
  • 13
0
votes
1 answer

fancyRpartPlot: How to avoid overlaying of terminal nodes when you have a significant amount of them?

I am pruning a classification tree using the minimum error and I want to plot the final output. This final output has a considerable amount of terminal nodes and I am trying to find a way to avoid the overlapping between them. So far I have tried…
lber
  • 13
  • 4
0
votes
1 answer

Troubles installing rattle for R

I apologize in advance if I missed some obvious rookie mistake I did. I tried installing rattle both through R terminal with the install.packages command and both with wajig install r-cran-rattle neither worked: In the first case it downloaded…
0
votes
1 answer

unable to access index for repository https://macos.rbind.org/src/contrib

I am trying to install rattle on macOS (Link): system('brew install gtk+') local({ if (Sys.info()[['sysname']] != 'Darwin') return() .Platform$pkgType = 'mac.binary.el-capitan' unlockBinding('.Platform', baseenv()) assign('.Platform',…
MRM
  • 831
  • 1
  • 8
  • 20
0
votes
1 answer

Not able to install ggplot

I get the following error when installing ggplot: package or namespace load failed for ‘ggplot2’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called ‘pkgconfig’ What am I missing?
0
votes
2 answers

The rattle Annotation option doesn't seem to work

rattle version 5.2.0 (or 5.2.5) doesn't seem to annotate graphs under the Explorer tab - Distributions - Box Plot. I can recode it and get the desired look but click / unclicking Annotate doesn't seem to do any thing. RStudio version 1.1.463, R…
Jeff
  • 155
  • 1
  • 8
0
votes
1 answer

Changing sigma in Rattle for rbfdot Kernel

How can I change the sigma value in Rattle for the rbfdot kernel in SVM model? I can change the cost function using eg: 'C-svc', 10 I use the options box to change these, if I type: 'C-svc','automatic', 10 I assume this means sigma is automatic…
lindseym
  • 1
  • 1
0
votes
0 answers

Error in installing packages 'stringr', 'reshape2', and 'ggplot2', and 'rattle' on mac

I am not a Mac user, but I am trying to help some students to install rattle on their Mac systems. I suggest them to follow zhiyzuo post, which is based on Yihui’s comment. But they get the following errors, although 'brew' is installed on their…
MRM
  • 831
  • 1
  • 8
  • 20
0
votes
0 answers

Rattle Mac Sierra10.13.6 cannot run Errors nor OOB ROC from conditional random forests

I would apprecaite some help! I am running rattle on a Mac with MacOS high Sierra 10.13.6. It took me really long to make all work. Now it is all functional except for the functions Errors and OOB ROC from conditional random forests. I get…
Cris
  • 21
  • 3
0
votes
1 answer

Rattle 5.1 ODBC connection issue

I've tried the ODBC connection in Rattle 5.1 many times with the same error. Error in sqlTables(crs$odbc) : first argument is not an open RODBC channel In addition: Warning messages: 1: In RODBC::odbcDriverConnect("DSN=ORCL", believeNRows =…
Edward Ng
  • 1
  • 1
0
votes
1 answer

How to interpret a Dendrogram from hierarchical clustering to find optimal number of clusters?

When viewing this, how do we know to find the optimal number of clusters? I used K-means and found the "elbow" on the graph that showed the optimal point but I am having trouble figuring this out from just the dendrogram.
rmahesh
  • 689
  • 1
  • 8
  • 23
0
votes
0 answers

Code generated by rattle not creating output file

I am supporting a system which is using code generated by rattle to do some predictions. However on looking at the predictions generated by the rattle code closely I see that the code is not at all doing any prediction but just displaying the input…