/gist:81f56a2790cbd6eae510 Secret
Created
August 26, 2014 19:43
SQL to run association rule mining in MADlib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE SCHEMA ar_groceries_results; | |
SELECT * FROM madlib.assoc_rules( .001, | |
.5, | |
'trans_id', | |
'product', | |
'groceries_data', | |
'ar_groceries_results', | |
TRUE | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment