Hello Statalist,

does anyone know how to get Stata to print all calculations occuring due to commands from the 'fuzzy' package by Longest & Vasey (2008)? As I've mentioned in a separate post, I'm loosing cases through the tabulate bestfit command in the fuzzy package, and don't understand why.

To figure out whats happening, I'd like to get Stata to print all underlying calculations. I've done this before using the 'noisily' option (for other commands in other packages), but thats not affecting the output here at all. See below:

Code:
. fuzzy A S O F T I

. tabulate bestfit, sort

    bestfit |      Freq.     Percent        Cum.
------------+-----------------------------------
      sOFTI |          4       16.67       16.67
      SOFTI |          2        8.33       25.00
      SoFTI |          2        8.33       33.33
      sOfti |          2        8.33       41.67
      soFTi |          2        8.33       50.00
      sofTI |          2        8.33       58.33
      sofTi |          2        8.33       66.67
      softI |          2        8.33       75.00
      SOFtI |          1        4.17       79.17
      SOfTI |          1        4.17       83.33
      SofTi |          1        4.17       87.50
      sOFti |          1        4.17       91.67
      sOfTi |          1        4.17       95.83
      soFTI |          1        4.17      100.00
------------+-----------------------------------
      Total |         24      100.00

. noisily: fuzzy A S O F T I

. noisily: tabulate bestfit, sort

    bestfit |      Freq.     Percent        Cum.
------------+-----------------------------------
      sOFTI |          4       16.67       16.67
      SOFTI |          2        8.33       25.00
      SoFTI |          2        8.33       33.33
      sOfti |          2        8.33       41.67
      soFTi |          2        8.33       50.00
      sofTI |          2        8.33       58.33
      sofTi |          2        8.33       66.67
      softI |          2        8.33       75.00
      SOFtI |          1        4.17       79.17
      SOfTI |          1        4.17       83.33
      SofTi |          1        4.17       87.50
      sOFti |          1        4.17       91.67
      sOfTi |          1        4.17       95.83
      soFTI |          1        4.17      100.00
------------+-----------------------------------
      Total |         24      100.00
Does anybody have any advice on how I can get Stata to tell me what's going on behind the scenes here?