Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
data_design_ide [2021/02/10 02:07]
admin [DEFINE]
data_design_ide [2021/02/12 15:28]
admin [DEFINE]
Line 32: Line 32:
 For //Derived// variables, //Domain// must have exactly one value, which can be static value or //groovy// expression. Below is a simple example to calculate the insurance premium credit of $100 given to good student age < 20: For //Derived// variables, //Domain// must have exactly one value, which can be static value or //groovy// expression. Below is a simple example to calculate the insurance premium credit of $100 given to good student age < 20:
  
-   (Age < 20 && GoodStudentStatus = true)?100:0+   (Age < 20 && GoodStudentStatus)?100:0
        
 You may use plugin reference in //Domain// value/expression which will be evaluated during  [[#EXECUTE ]]. For example: You may use plugin reference in //Domain// value/expression which will be evaluated during  [[#EXECUTE ]]. For example:
Line 58: Line 58:
  
        
-The //condition// and //assertion// are simple boolean expressions:+The //condition// and //assertion// are simple boolean expressions (NOTE: this is not //groovy expression//):
    [variable name] [operator] [value or [variable name] [&& or ||] ...     [variable name] [operator] [value or [variable name] [&& or ||] ... 
  
Line 115: Line 115:
  
 {{wiki:idescreen:datadesign_generate_mixedstrength.png?200}} {{wiki:idescreen:datadesign_generate_mixedstrength.png?200}}
 +
 +After selecting //Mixed// strength, section //Variable Interaction (Mixed Overall Strength only)// appears.  Click on "+" to add a  custom interaction/strength set, select the desired strength/algorithm and select the variables respectively.
 +
  
 ---- ----