When trying to execute:
wikiEVDraw = readdlm("wikipediaEVDraw.csv", ',') # getting quotes right is important!
I get the following error:
UndefVarError: readdlm not defined.
help?> readdlm search: readdir Couldn't find readdlm Perhaps you meant readdir, read, read!, real or readchomp No documentation found. Binding readdlm does not exist.
In this case use:
using DelimitedFileswikiEVDraw = readdlm("wikipediaEVDraw.csv", ',') # getting quotes right is important!