NeticaVersion {RNetica} | R Documentation |
The version number of Netica is returned as both an integer and a string.
NeticaVersion(session=getDefaultSession())
session |
An object of type |
This is a synnonym for session$neticaVersion()
(see
NeticaSession
).
This must be called after the call to StartNetica()
.
A list with two elements:
number |
Netica version number times 100 (to make it an integer). |
message |
String defining Netica version. |
RNetica was developed with Netica API 5.04
Russell Almond
http://norsys.com/onLineAPIManual/index.html: GetNeticaVersion_bn()
sess <- NeticaSession() startSession(sess) print(sess$neticaVersion()$message) stopifnot(NeticaVersion(sess)$number > 409) ## Version 4.09 is a popular one. stopSession(sess)