NeticaVersion {RNetica}R Documentation

Fetches the version number of Netica.

Description

The version number of Netica is returned as both an integer and a string.

Usage

NeticaVersion(session=getDefaultSession())

Arguments

session

An object of type NeticaSession which defines the reference to the Netica workspace.

Details

This is a synnonym for session$neticaVersion() (see NeticaSession).

This must be called after the call to StartNetica().

Value

A list with two elements:

number

Netica version number times 100 (to make it an integer).

message

String defining Netica version.

Note

RNetica was developed with Netica API 5.04

Author(s)

Russell Almond

References

http://norsys.com/onLineAPIManual/index.html: GetNeticaVersion_bn()

See Also

NeticaSession StartNetica()

Examples

sess <- NeticaSession()
startSession(sess)
print(sess$neticaVersion()$message)
stopifnot(NeticaVersion(sess)$number > 409) ## Version 4.09 is a popular one.
stopSession(sess)

[Package RNetica version 0.7-2 Index]