FragmentCounts
Returns the list of fragment counts (numbers of data points in each fragment) of the NexVar
object representing continuous variable.
Syntax
var.FragmentCounts()
Return
Returns the list of fragment counts (numbers of data points in each fragment) of the NexVar
object representing continuous variable.
Note
Python only.
Examples
Python
import nex
doc = nex.GetActiveDocument()
counts = doc['FP01'].FragmentCounts()
#print number of points in the first fragment
print(counts[0])