I am unable to import my csv
Show older comments
I am unable to import my csv
Answers (2)
Dyuman Joshi
on 15 Oct 2023
Moved: Image Analyst
on 15 Oct 2023
It's working here, see below. So, there seems no problem with the file.
How are you reading the file?
Is the file in the current folder? Use the command "pwd" to check what the current folder is.
y = readtable('air-quality-india.csv')
鑫源
on 15 Oct 2023
0 votes
the filename better be an absolute path, rather than a short form.(like C:\**\**.csv
You can use readcsv or readtable
2 Comments
Image Analyst
on 15 Oct 2023
There is no readcsv, though there is a deprecated csvread which is recommended not to use. I think you meant to use readmatrix or readtable.
Also, specifying the full file name (folder plus base file name plus extension) is a good idea. Use fullfile to do that.
鑫源
on 15 Oct 2023
thank you for correction. You 're right
Categories
Find more on MATLAB Report Generator in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!