Dataset Methods
Dataset comes with methods which allows you to manipulate your data.
get
Returns row as NArray for the specified index.
You can use negative indexing here.
slice
Use this to slice a Dataset vertically(column-wise).
length
Use this property to get the number of rows in your Dataset.
toArray
Converts Dataset to Array of NArrays
onGet
Overwrite this function to add custom logic to process single row.
Make sure that your function is following the Signature
while overwritting it.