FRAMES | NO FRAMES
GetMRIGroups Method

Gets the list of all available MRI groups.

Availability: Business Analyst Server.

string[] GetMRIGroups ( 
    string  ActiveDatasetID       
);

Parameter Description
ActiveDatasetID (Since version 9.3.1, this parameter is optional — it can be null).
ID of the active dataset. Type String.

Returns

Variable of type String[] containing the list of all available MRI groups

Remarks

The Mediamark Research, Inc. (MRI) groups can be used with the UnderstandingTargetCustomers method to understand defined target segments.

Examples

The example below requests a list of Mediamark Research, Inc. (MRI) variables that are available to select when executing the UnderstandingTargetCustomers method.

C#
// Instantiate the BAServerHelper class to access analysis methods
BAServerHelper baServerHelper = new BAServerHelper();
baServerHelper.ActiveDatasetID = "USA_ESRI"; // Optional parameter
 
string[] mriGroups = baServerHelper.GetMRIGroups();

See Also