An integer number `[0..nodes.length - 1]` that represents the target node. The 'target' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 442 | |
| 443 | @property |
| 444 | def target(self): |
| 445 | """ |
| 446 | An integer number `[0..nodes.length - 1]` that represents the |
| 447 | target node. |
| 448 | |
| 449 | The 'target' property is an array that may be specified as a tuple, |
| 450 | list, numpy array, or pandas Series |
| 451 | |
| 452 | Returns |
| 453 | ------- |
| 454 | numpy.ndarray |
| 455 | """ |
| 456 | return self["target"] |
| 457 | |
| 458 | @target.setter |
| 459 | def target(self, val): |