Displaying 20 results from an estimated 30000 matches similar to: "from data.frame to transactions"
2011 Jan 28
1
arules package question- apriori/S4 object export question
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
functions and exporting data frames and other standard objects. Im having
difficulty working with these S4
2007 Oct 17
1
How to save association rules generated by arules package
Hi,
I have been able to generate association rules for Market Basket Analysis
using the following codes:
****************************************************************************
*******************************************
library("arules")
rules <- read.csv("write1.csv",na.strings=c(".", "NA", "", "?"),header=TRUE)
2009 Feb 28
0
arules: rules are built on item ordering in the dataframe, rather than
Hi,
I'm trying out the package arules and I'm having a bit of trouble
getting my data to work properly. I have a set of transactions with
the purchased products but each product could appear in a different
column in the data frame. This causes the rules to be built based on
the ordering, which is not significant.
Here is an example:
# # Code:
my.df <- data.frame(
2012 Jan 17
1
arules "killed"
Hi, I recently got a bizarre message when running arules. It just said
"Killed" and quit. Anyone know why this might have happened? I am running R
on an AWS quad xl ubuntu instance.
Here is some information, including dataset size and the parameters:
parameter specification:
confidence minval smax arem aval originalSupport support minlen
maxlen
0.0003581251 0.1 1 none
2013 Mar 11
2
Función Inspect() en "arules" package
Buenas tardes,
Necesito ayuda con la función inspect() del paquete "arules".
Mis comandos son:
r1 <- apriori(tran, parameter=list(support=0.012, confidence=0.7))
r1
summary(r1)
#todo bien, tengo 5 reglas y todo claro en el resume
#pero al pedir
inspect(r1)
inspect(sort(r1, by = "confidence"))
me arroja el error:
Error en UseMethod("inspect", x) :
no
2008 Mar 17
0
arules - getting transaction data in
Hi All
Hoping someone can help me with the "transactions" object. I am struggling
to get my data in. I know the answer is in the help somewhere I'm sure, I
just cannot find it. Essentially, I have data in this format (though I can
change it if it particularly unsuitable)
Transaction_id, store , salesman, date_time , items
1 , waterfront, john ,
2012 Jun 25
1
Arules - predict function issues - subscript out of bounds
Hi,
I'm doing a Market Basket Analysis in which I have a list of transaction
id's in column 2 and transactions(product names) in column 1. I read this
into a transaction file using a
txn<-read.transaction(file="data.csv",format='single', rm.duplicates=F,
cols=c(1,2))
If I want to use the apriori algorithm everything seems to be running fine.
However it is when I want
2010 Feb 18
1
how to change number of itemes appeare in right-hand-side of the rule with apriori in R(arules)?
Hi All,
I use arules library, and try to create an association rules for this
transaction file:
a,c,f,3,4,5
b,e,1,2,4
a,c,e,f,1,3,4,5
d,5
b,c,e,f,1,2,3,4
a,c,e,f,1,3,4,5
b,c,e,f,1,3,4
b,e,1,2,4
a,c,e,f,1,3,4,5
a,b,c,e,f,1,3,4
a,c,d,f,3,4,5
I want to get the rule such:
{c,e,f}=> {3,4,5}
I used this command:
ar=apriori(tr, parameter=list(support=.4, confidence=0.8, maxlen=11),
appearance
2013 Oct 31
0
arules package apriori() fn error message XXXX
Hi everybody,
I am using the apriori() fn in the arules package and am encountered an error.
rules <- apriori(rdayst,parameter = list(support = 0.01, confidence = 0.6))
"You chose a very low absolute support count of 0. You might run of memory."
I assume this is related to the value of .01 specified for the support
= argument. If so, what is a safe and reliable max value for
2010 Apr 19
2
Huge data sets and RAM problems
Dear all,
This is the first time I am sending mail to the mailing list, so I
hope I do not make a mistake...
The last months I have been working on my MSc thesis project on
performing data mining techniques on user logs of a
software-as-a-service application. The main problem I am experiencing
is how to process the huge amount of data. More specifically:
I am using R 2.10.1 in a laptop with
2009 Jul 17
1
Arules questions. I need some help please
Question 2a)
I am also working with arules package and I have the following problem
let suppose the matrix b like:
b<-matrix(c(1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1),nrow=6)
rownames(b)=c("T1", "T2", "T3", "T4", "T5", "T6")
colnames(b)=c("It1", "It2", "It3", "It4")
bt<-as(b,
2008 Jul 24
1
How to get rule number in arules
Dear R experts
I generated rules using apriori method in arules package. Though I can access rules using %in% function but I am unable to access a specific rule by its unique identifier number. I want to use rule number for further analysis..
Thanking you in advance.
Daniel
Amsterdam
Send instant messages to your online friends
2011 Nov 11
0
predictive apriori
Dear list members,
I know that there is the arules package with the implementation of the
apriori algorithm. However i want to use the "predictive apriori" instead.
These algorithm can mine as rules as i want and there is an implementation
on weka.
There is some implementation on R?
--
Att,
Flávio Barros
[[alternative HTML version deleted]]
2013 May 21
0
Arules: getting rules with only one item in the left-hand side
Hello,
I am using the package arules to generate association rules. I would like
to restrict the rules so that in the left-hand side there's only one
particular element, let's call it "potatoe".
If I do this:
rules <- apriori(dtm.mat, parameter = list(sup = 0.4, conf =
0.9,target="rules"), appearance = list(lhs = c("potatoe")))
I get "potatoe"
2008 Mar 14
0
arules package (apriori)
hello,
I want to perform the Apriori association rules algorithm to my data. The set of data contains missing values and consists in a combination of continuous and categorical variables.
After discretizing the continuous variables, I wrote the following instruiction to perform Apriori, but I obtained the following error message:
> rules <- apriori(dd_new,parameter=list(supp=0.5, conf=0.9,
2011 Mar 06
1
transaction list transformation to use rpart.
So there are a couple parts to this question. I am trying to implement the
rpart/random forest algorithms on a transaction lists. That is to say i am
trying to train models in order to deduce what are the most predictive
transactions within a customers history in order apply this model to future
test data and identify accounting irregularities(ie. this account had x and
y so they should have also
2008 Sep 03
0
How to read-in a transaction-table with single items per line via RODBC?
Hi,
I succeeded to read-in a transaction-table tr_dat with single items per
line via RODBC of the form:
Transact-ID ItemID
1 item1
1 item2
1 item3
2 item2
2 item3
...
how do I create a transaction object of the arules package from such a
table?
I tried this with read.transactions(tr_dat, format="single") of the
package arules but I didn'd
2011 Oct 31
2
assignment operator <- does not work in a function...
Dear Users,
I have a little problem with assignment operator. It's working from command prompt but does not work same as in the command prompt in the function. Am I missing or forgetting something? The function is (tried on both 2.13.1 and 2.13.2) as below using arules and arulseViz packages:
>kuralfonk
function()
{
require(arules)
require(arulesViz)
2011 May 31
0
Identifying rows that violate association rules
Hello,
I am successfully applying apriori Algorithm in arules package to basket-form data and am getting a set of association rules. Is there an easy way to know, which rows violate these rules? That is, if I have a rule {beer,vodka} => {gin}, I want to find rows which contain {beer,vodka} but not {gin}.
Best regards and thanks in advance,
Rashid
[[alternative HTML
2011 Mar 09
2
No response after click the "show Rules" button on Tab "Associate".
Hi,
I am using Rattle 2.6.4 with R 2.12.2 on win64, is this a bug ?
Following is the content after execute the associate analysis process:
Summary of the Apriori Association Rules:
Number of Rules: 23351
Summary of the Measures of Interestingness:
support confidence lift
Min. :0.1250 Min. :1 Min. :2.667
1st Qu.:0.1250 1st Qu.:1 1st Qu.:2.667
Median :0.1250