i cant load or read datasets
古いコメントを表示
i cant load 'factoryReports.csv' dataset
4 件のコメント
KSSV
2023 年 6 月 6 日
Why you can't? What did you try? What error you are getting?
Manas
2023 年 6 月 6 日
Hello Amir,
You can use the readmatrix() function to import a .csv file into MATLAB. Keep the .m file and .csv file in same directory.
M = readmatrix('factoryReports.csv')
For More info you can refer to this following documentation Read matrix from file - MATLAB readmatrix (mathworks.com).
Amir Azadeh Ranjbar
2023 年 6 月 6 日
回答 (1 件)
Hi Amir,
There are a few potential reasons and troubleshooting steps you can try:
- Verify the file path: Double-check that you have provided the correct file path to the 'factoryReports.csv' dataset. Ensure that the file is located in the specified location and that the file name and extension are accurate.
- Check the current working directory: MATLAB looks for files in the current working directory by default. Make sure that the 'factoryReports.csv' file is either located in the current working directory or provide the full file path when loading the dataset.
- Check file permissions: Ensure that you have the necessary permissions to access and read the 'factoryReports.csv' file. If the file is read-only or restricted, you may encounter errors when attempting to load it.
- Check file name: Ensure that file name is correct and if still error persists then write whole address of the dataset.
I hope these steps will help you with your problem.
Thank you.
2 件のコメント
Lisjak
2023 年 12 月 29 日
There is no file on the computer?
Walter Roberson
2023 年 12 月 30 日
readtable() can read from URLs if you have a URL for the file.
カテゴリ
ヘルプ センター および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!