showfis: Show a fis object.

Description Usage Arguments Value Examples

View source: R/FuzzyInferenceSystem.R

Description

Shows a fis and all its data in an ordered format on the console.

Usage

1
showfis(fis)

Arguments

fis

Requires a fis structure to be displayed.

Value

Returned the organised text regarding the fis is output to console.

Examples

1
2
fis <- tipper()
showfis(fis)

Example output

1.  Name              tipper 
2.  Type              mamdani 
3.  Inputs/Outputs    [ 2 1 ] 
4.  NumInputMFs       [ 3 2 ] 
5.  NumOutputMFs      [ 3 ] 
6.  NumRules          3 
7.  AndMethod         min 
8.  OrMethod          max 
9.  ImpMethod         min 
10. AggMethod         max 
11. DefuzzMethod      centroid 
12. InLabels          service
13. InLabels          food
14. OutLabels         tip
15. InRange           [ 0 10 ] 
16. InRange           [ 0 10 ] 
17. OutRange          [ 0 30 ] 
18. InMFLabels        poor
19. InMFLabels        good
20. InMFLabels        excellent
21. InMFLabels        rancid
22. InMFLabels        delicious
23. OutMFLabels	      cheap
24. OutMFLabels	      average
25. OutMFLabels	      generous
26. InMFTypes         gaussmf
27. InMFTypes         gaussmf
28. InMFTypes         gaussmf
29. InMFTypes         trapmf
30. InMFTypes         trapmf
31. OutMFTypes 	      trimf
32. OutMFTypes 	      trimf
33. OutMFTypes 	      trimf
34. InMFParams        [ 1.5 0 ] 
35. InMFParams        [ 1.5 5 ] 
36. InMFParams        [ 1.5 10 ] 
37. InMFParams        [ 0 0 1 3 ] 
38. InMFParams        [ 7 9 10 10 ] 
39. OutMFParams       [ 0 5 10 ] 
40. OutMFParams       [ 10 15 20 ] 
41. OutMFParams       [ 20 25 30 ] 
42. Rule Antecedent   [ 1 1 ] 
43. Rule Antecedent   [ 2 0 ] 
44. Rule Antecedent   [ 3 2 ] 
45. Rule Consequent   1 
46. Rule Consequent   2 
47. Rule Consequent   3 
48. Rule Weight       1 
49. Rule Weight       1 
50. Rule Weight       1 
51. Rule Connection   2 
52. Rule Connection   1 
53. Rule Connection   2 

FuzzyR documentation built on May 19, 2021, 9:06 a.m.

Related to showfis in FuzzyR...