I am very new to Julia and would appreciate some help with the following. I am trying to read a CSV file into my programme. When I open the CSV Excel, its a 199x7 matrix of numbers. I am using the following code to create a variable, Xrel:
julia> versioninfo()
Julia Version 1.5.3
Commit 788b2c77c1 (2020-11-09 13:37 UTC)
Platform Info:
OS: Windows (x86_64-w64-mingw32)
CPU: AMD Ryzen 9 3900X 12-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, znver2)
and
(@v1.5) pkg> st
Status `C:\Users\oheil\.julia\environments\v1.5\Project.toml`
...
[336ed68f] CSV v0.8.3
...
There has been similar questions here with CSV and I suspect that people are trying outdated examples from some websites. The CSV API has changed quite a bit.