Supermarket Dataset for Apriori Algorithm

“I need to develop software designed for the business analyst of the Future Stores supermarket, the software performs the Rule Mining according to the transient data of supermarket sales transactions and prepares the discount policy by preparing Combo. The software uses data mining algorithms, namely Apriori Algorithm. Association rules will be displayed in a friendly manner to generate discount policies based on positive association rules.

Where can I get the supermarket dataset to test the Apriori algorithm that I encoded?

+5
source share
2 answers

To get a market data set, you can go here: fimi.ua.ac.be/data/and download a retail data set.

These are anonymous transaction data sets from a Belgian store.

It is ideal for testing Apriori approximation algorithms or other mining algorithms and associations.

+6
source

Instead of looking for a dataset in the real world, you should create a small specific dataset for each unit test. The data set should provide the minimum necessary condition for checking the only function of the system. This will facilitate error detection, test testing over time and demonstrate the capabilities and patterns of using the system to other developers.

- , -.

  • addsNewUser -
  • throwsExceptionForDuplicateUsername -
  • correctPasswordPasses -
  • throwsExceptionForIncorrectUsername -
  • throwsExceptionForIncorrectPassword -
  • throwsExceptionWhenNewUsernameExists -

:. , , , . , ( ) .

, ( HIPAA), . , SSN .: (

0
source

All Articles