what is the difference between readtable () and datastore() ?
4 ビュー (過去 30 日間)
古いコメントを表示
upto my knowledge both these commands are used for data import. i want to know the difference between these two. help me
0 件のコメント
採用された回答
Mohammad Sami
2021 年 6 月 29 日
readtable is meant for reading a single file. Datastore are designed for reading multiple files of the same data format. They are used when your big data is split across many smaller files. Under the hood the datastore might use readtable to read the individual files.
0 件のコメント
その他の回答 (1 件)
Anupama
2023 年 2 月 23 日
With readtable, you have to change file name everytime you run the script and select a new file for analysis with the same script but with datastore, you can use uiget function to select any file (or a new file everytime you run the script) and it will be read (without you having to worry about manually updating the file name.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!