|
<< Click to Display Table of Contents >> Navigation: Using SMILE Wrappers > Networks, nodes and arcs > Network |
To create a network object, use a default constructor. For platform-specific information about the lifetime of Network instances, see the Platforms and Wrappers section.
Python
import pysmile
...
net = pysmile.Network()
Java
import smile.*;
...
Network net = new Network();
C#
using Smile;
...
Network net = new Network();
R
library(rSMILE)
...
net <- Network()