Re: [R] arules package question- apriori/S4 object export question

2011-01-30 Thread John Dennison
Thanks for the help. I am working through the write.csv command and the using Google Refine to clean it up into a table. Great Program: http://code.google.com/p/google-refine/wiki/GettingStarted Ill look into the XML parser that may be

Re: [R] arules package question- apriori/S4 object export question

2011-01-30 Thread Michael Hahsler
Hi John, You can use WRITE (see ? WRITE) to save rules to a file in the from: {a,b,c} => {d} 0.1 0.3 2.2 where the numbers after the rule are support, confidence and lift. There is no csv export since the number of items in the rules varies and the data structure can not be converted into a si

[R] arules package question- apriori/S4 object export question

2011-01-28 Thread johnistan
I am new to R( but quickly being awed by the range of this it can accomplish, you have one more convert to the useR universe). I have successfully implemented the apriori function and are getting great results. My question concerns how to export these results. I have read lots about write.csv func