Hi
How can I export the rows that are used to form the confusion matrix?
I want to continue to make calculations on the rows that makes the result in the confusion matrix including TP, FP, TN and FN.
How can I export all the rows (incl the parameters) into an csv flie or Excel file?
Regards,
Rolf
--
You received this message because you are subscribed to the Google Groups "rattle-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rattle-users...@googlegroups.com.
To post to this group, send email to rattle...@googlegroups.com.
Visit this group at http://groups.google.com/group/rattle-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Hi,
Rattle is not responding (meaning nothing happens) when I execute Associate (including basket).
In R the following error is displayed:
Error in executeAssociateTab() : attempt to apply non-function
I think it is has to do with running Rattle on a Mac
Lion OS X 10.8.3
R version 2.15.3
Rattle 2.6.26
Does anyone have a solution?
Regards Gerard
Hi Graham,
I get the following error if I try to create the csv-file:
Error in table(crs$dataset[crs$validate, c(crs$input, crs$target)]$RainTomorrow, :
all arguments must have the same length
My goal in the weather dataset would be to take the sum of RISK_MM from the 205 TP and compare it with the sum of the RISK_MM from the 27 FP. Sometimes the RISK_MM is smaller or bigger in the TP than the FP. (In the weather dataset is the TP no(Pre)/no(Act) and the FP(no(Pre)/yes(Act))
How do I do that?
Kind regards,
Rolf
It is easier to just do it all in Excel. Export the scored list, and create your own confusion matrix with Excel formulas. I do it all the time with output from other data mining tools.
Bob Nisbet
Thank you for the advise!!
What I am worried about is that the RISK_MM at the False Positive ( the wrong predictions) is worse than the average RISK_MM. That is the reason I want the RISK_MM that is the wrong predictions.
Rolf
--
You received this message because you are subscribed to the Google Groups "rattle-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rattle-users...@googlegroups.com.
To post to this group, send email to rattle...@googlegroups.com.
Visit this group at http://groups.google.com/group/rattle-users.
For more options, visit https://groups.google.com/d/optout.
# Association Rules# The 'arules' package provides the 'arules' function.require(arules, quietly=TRUE)
# KMeans# Reset the random number seed to obtain the same results each time.set.seed(crv$seed)
# Entropy Weighted KMeans# The 'weightedKmeans' package provides the 'ewkm' function.require(weightedKmeans, quietly=TRUE)# Reset the random number seed to obtain the same results each time.set.seed(crv$seed)