var fDesc=new Array(); fDesc[0] = "Magnum Opus finds rules and itemsets from data. It uses the highly efficient OPUS search algorithm for fast association discovery. The system is designed to handle large data sets containing millions of cases, but its capacity to do so will be constrained by the amount of memory installed in the host system.

Magnum Opus can work with two different types of data, transaction data and attribute-value data. Transaction data consists of collections of items, such as the products purchased by a customer in a single transaction. Attribute-value data is a collection of cases, each described by a number of attributes, such as a typical customer database."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }