What is the difference between Decision table, Decision tree & MapValue?

AllJobsInfo

Administrator
Staff member
Decision Table — Decision tables compare property values against a list of conditions, and choose one or more actions from that list if the conditions are met.Making decisions on a series of data that are different from one branch to the next.

Decision Tree — Decision trees are functionally similar to decision tables, with the additional ability to create nested IF statements. (Uses IF/Then logic)Making decisions against the same data element.

Map Value — Map values convert input values in defined ranges into calculated results. For example, a map value could take a latitude and a longitude value as inputs, and convert them into the name of a city.
 
Top