How to find the minimum support in Apriori algorithm

前端 未结 6 2286
北海茫月
北海茫月 2021-02-19 18:27

When the percentage values of support and confidence is given how can I find the minimum support in Apriori algorithm. For an example when support and confidence is given as 60%

6条回答
  •  梦谈多话
    2021-02-19 19:01

    The support and confidence are measures to measure how interesting a rule is.

    The minimum support and minimum confidence are set by the users, and are parameters of the Apriori algorithm for association rule generation. These parameters are used to exclude rules in the result that have a support or a confidence lower than the minimum support and minimum confidence respectively.

    So to answer your question, when you say that: "For an example when support and confidence is given as 60% and 60% respectively what is the minimum support?" you probably mean that you have set the minimum support and confidence to 60 %.

    I think that you are just confused by the terms.

提交回复
热议问题