Uses of Class
elki.itemsetmining.Itemset
-
Packages that use Itemset Package Description elki.itemsetmining Algorithms for frequent itemset mining such as APRIORI.elki.itemsetmining.associationrules Association rule mining.elki.result Result types, representation and handling. -
-
Uses of Itemset in elki.itemsetmining
Subclasses of Itemset in elki.itemsetmining Modifier and Type Class Description classDenseItemsetAPRIORI itemset, dense representation.classOneItemsetFrequent itemset with one element.classSmallDenseItemsetFrequent itemset, dense representation for up to 64 items.classSparseItemsetFrequent itemset, sparse representation.Methods in elki.itemsetmining that return types with arguments of type Itemset Modifier and Type Method Description protected java.util.List<Itemset>APRIORI. aprioriGenerate(java.util.List<? extends Itemset> supported, int length, int dim)Prunes a given set of candidates to keep only those BitSets where all subsets of bits flipping one bit are frequent already.protected java.util.List<? extends Itemset>APRIORI. frequentItemsets(java.util.List<? extends Itemset> candidates, Relation<BitVector> relation, int needed, DBIDs ids, ArrayModifiableDBIDs survivors, int length)Returns the frequent BitSets out of the given BitSets with respect to the given database.Methods in elki.itemsetmining with parameters of type Itemset Modifier and Type Method Description protected static intItemset. compareLexicographical(Itemset a, Itemset o)Robust compare using the iterators, lexicographical only!intDenseItemset. compareTo(Itemset o)intItemset. compareTo(Itemset o)intOneItemset. compareTo(Itemset o)intSmallDenseItemset. compareTo(Itemset o)intSparseItemset. compareTo(Itemset o)static long[]Itemset. toBitset(Itemset i, long[] bits)Get the items.Method parameters in elki.itemsetmining with type arguments of type Itemset Modifier and Type Method Description protected java.util.List<Itemset>APRIORI. aprioriGenerate(java.util.List<? extends Itemset> supported, int length, int dim)Prunes a given set of candidates to keep only those BitSets where all subsets of bits flipping one bit are frequent already.private java.lang.StringBuilderAPRIORI. debugDumpCandidates(java.lang.StringBuilder msg, java.util.List<? extends Itemset> candidates, VectorFieldTypeInformation<BitVector> meta)Debug method: output all itemsets.private voidEclat. extractItemsets(DBIDs[] idx, int start, int minsupp, java.util.List<Itemset> solution)private voidEclat. extractItemsets(DBIDs iset, DBIDs[] idx, int[] buf, int depth, int start, int minsupp, java.util.List<Itemset> solution)protected java.util.List<? extends Itemset>APRIORI. frequentItemsets(java.util.List<? extends Itemset> candidates, Relation<BitVector> relation, int needed, DBIDs ids, ArrayModifiableDBIDs survivors, int length)Returns the frequent BitSets out of the given BitSets with respect to the given database. -
Uses of Itemset in elki.itemsetmining.associationrules
Subclasses of Itemset in elki.itemsetmining.associationrules Modifier and Type Class Description protected static classAssociationRuleGeneration.PartialItemsetMutable scatch itemset for finding itemsets, based onSparseItemset.Fields in elki.itemsetmining.associationrules declared as Itemset Modifier and Type Field Description private ItemsetAssociationRule. antecedentConsequent itemsetprivate ItemsetAssociationRule. consequentConsequent itemsetprivate ItemsetAssociationRule. unionUnion of consequent and consequentFields in elki.itemsetmining.associationrules with type parameters of type Itemset Modifier and Type Field Description (package private) java.util.List<Itemset>AssociationRuleGeneration.ItemsetSearcher. itemsetsItemsets to search.Methods in elki.itemsetmining.associationrules that return Itemset Modifier and Type Method Description ItemsetAssociationRule. getAntecedent()Get the antecedent of the rule.ItemsetAssociationRule. getConsequent()Get the consequent of the rule.ItemsetAssociationRule. getUnion()Get the union of consequent and consequent of the rule.ItemsetAssociationRuleGeneration.ItemsetSearcher. search(Itemset c)Find an itemset, using binary search.Methods in elki.itemsetmining.associationrules with parameters of type Itemset Modifier and Type Method Description private voidAssociationRuleGeneration.Instance. processSubsets(Itemset itemset, int len, int cur)ItemsetAssociationRuleGeneration.ItemsetSearcher. search(Itemset c)Find an itemset, using binary search.Constructors in elki.itemsetmining.associationrules with parameters of type Itemset Constructor Description AssociationRule(Itemset union, Itemset consequent, Itemset antecedent, double measure)Constructor.Constructor parameters in elki.itemsetmining.associationrules with type arguments of type Itemset Constructor Description ItemsetSearcher(java.util.List<Itemset> itemsets)Constructor. -
Uses of Itemset in elki.result
Fields in elki.result with type parameters of type Itemset Modifier and Type Field Description private java.util.List<Itemset>FrequentItemsetsResult. itemsetsThe supports of all frequent itemsets.Methods in elki.result that return types with arguments of type Itemset Modifier and Type Method Description java.util.List<Itemset>FrequentItemsetsResult. getItemsets()Returns the frequent item sets.Constructor parameters in elki.result with type arguments of type Itemset Constructor Description FrequentItemsetsResult(java.util.List<Itemset> itemsets, VectorFieldTypeInformation<BitVector> meta, int total)Constructor.
-