And be sure to take a close look at the actor help. it does have a bit of a learning curve.
A few tips if you want to to read the data from a pre-existing data file around formatting and cleaning your dataset:
* save your file as a tab deliminated file with the ending .txt with no other formatting
* must not have a header row
* all data in a given column needs to be of the same data type (int, float, string). Different columns can have different data types
* null values can cause problems. I typically remove them.
* and if you're familiar with python the "pandas" library (available as an anaconda and jupyter distro) is very helpful for cleaning large data sets for integration w/ izzy.
* remember to use UTF-8 encoding
* and finally - be sure to click read on the data array once your data file is in place. change the recall value to the line you want to access.....
Good luck!