Dear Users,

I was using 2.12.1 version for arules and arulesViz, but I encountered with a 
problem. I wrote a small function that can also plotting with arulesViz. The 
problem occures while plotting command is on, console does not print other 
commands' results. So I put off the plot command, but this time only the last 
command's result printed in the console and also <- operator did not put the 
result in the ls() output (all these commands run properly from console but I 
do not want to write everytime I need). First I thought that it was becaue of 
version, so uninstalled 2.12.1 and installed 2.13.1 but changed anything. The 
function code is below and I am using both Windows 7 and R in 64 Bit (32 Bit R 
did the same thing). I could not use R for a few years because of personal 
reasons, so I could not follow the changes if there are that I should.

Thanks in advance for your replies.

The Function:
function()
{
    require(arules)
    require(arulesViz)
    veri<-read.transactions("c:/RVerileri/BitirmeVeri.csv",sep=";",col=1)    
#After this, "veri" can not be seen in the ls() output
    itemFrequencyPlot(veri,type="absolute")                                     
      #This works fine (if this command is deleted)
    summary(veri)                                                               
                 #No output in console (No output in console)
    itemFrequency(veri,type="absolute")                                         
       #No output in console (This works fine)
}


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to