what is the difference between readtable () and datastore() ?
조회 수: 6 (최근 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!