Create an RLINK Query Expression Node


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Rlink( _ 
   ByVal modelname As String,  _ 
   ByVal nqs As NetricsQuery() _ 
) As NetricsQuery
C#
public static NetricsQuery Rlink(
   string modelname,
   NetricsQuery[] nqs
)
C++
public:
 static NetricsQuery Rlink(
   String modelname,
   array<NetricsQuery>^ nqs
)
J#
public static NetricsQuery Rlink(
   string modelname,
   NetricsQuery[] nqs
)
JScript
public static  function Rlink(
   modelname : String,
   nqs : NetricsQuery[]
) : NetricsQuery

Parameters

modelname
the name of the decision engine model to use
nqs
list of NetricsQuery objects that are the sub expressions for this RLINK expression.

Remarks

This is only available if you purchased the Netrics Decision Engine. RLINK is the intelligent score combiner that can be used in lieu of an AND, and is a machine learning model that should be set up exactly as it was trained. Follow the instructions of your Netrics contact in order to use this NetricsQuery type.

See Also