Common Parameter: linksVar

CASL Syntax

linksVar={
auxWeight="variable-name",
from="variable-name",
to="variable-name",
vars={"variable-name-1" <, "variable-name-2", ...>},
varsOut={"variable-name-1" <, "variable-name-2", ...>},
weight="variable-name"
}

Parameter Descriptions

auxWeight="variable-name"

specifies the data variable name for the auxiliary link weights.

from="variable-name"

specifies the data variable name for the 'from' nodes.

Default "from"
to="variable-name"

specifies the data variable name for the 'to' nodes.

Default "to"
vars={"variable-name-1" <, "variable-name-2", ...>}

specifies the additional data variable names for link attributes.

varsOut={"variable-name-1" <, "variable-name-2", ...>}

specifies the output data variable names for link attributes.

weight="variable-name"

specifies the data variable name for the link weights.

Default "weight"

Lua Syntax

linksVar={
auxWeight="variable-name",
from="variable-name",
to="variable-name",
vars={"variable-name-1" <, "variable-name-2", ...>},
varsOut={"variable-name-1" <, "variable-name-2", ...>},
weight="variable-name"
}

Parameter Descriptions

auxWeight="variable-name"

specifies the data variable name for the auxiliary link weights.

from="variable-name"

specifies the data variable name for the 'from' nodes.

Default "from"
to="variable-name"

specifies the data variable name for the 'to' nodes.

Default "to"
vars={"variable-name-1" <, "variable-name-2", ...>}

specifies the additional data variable names for link attributes.

varsOut={"variable-name-1" <, "variable-name-2", ...>}

specifies the output data variable names for link attributes.

weight="variable-name"

specifies the data variable name for the link weights.

Default "weight"

Python Syntax

linksVar={
"auxWeight":"variable-name",
"from_":"variable-name",
"to":"variable-name",
"vars":["variable-name-1" <, "variable-name-2", ...>],
"varsOut":["variable-name-1" <, "variable-name-2", ...>],
"weight":"variable-name"
}

Parameter Descriptions

"auxWeight":"variable-name"

specifies the data variable name for the auxiliary link weights.

"from_":"variable-name"

specifies the data variable name for the 'from' nodes.

Default "from"
"to":"variable-name"

specifies the data variable name for the 'to' nodes.

Default "to"
"vars":["variable-name-1" <, "variable-name-2", ...>]

specifies the additional data variable names for link attributes.

"varsOut":["variable-name-1" <, "variable-name-2", ...>]

specifies the output data variable names for link attributes.

"weight":"variable-name"

specifies the data variable name for the link weights.

Default "weight"

R Syntax

linksVar=list(
auxWeight="variable-name",
from="variable-name",
to="variable-name",
vars=list("variable-name-1" <, "variable-name-2", ...>),
varsOut=list("variable-name-1" <, "variable-name-2", ...>),
weight="variable-name"
)

Parameter Descriptions

auxWeight="variable-name"

specifies the data variable name for the auxiliary link weights.

from="variable-name"

specifies the data variable name for the 'from' nodes.

Default "from"
to="variable-name"

specifies the data variable name for the 'to' nodes.

Default "to"
vars=list("variable-name-1" <, "variable-name-2", ...>)

specifies the additional data variable names for link attributes.

varsOut=list("variable-name-1" <, "variable-name-2", ...>)

specifies the output data variable names for link attributes.

weight="variable-name"

specifies the data variable name for the link weights.

Default "weight"
Last updated: November 23, 2025