Commands related to big data and tall array to annalyze data from .csv files.
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am working on an Infography about running big data with matlab. I need the general commands used to create the datastore and then the tall array. For example, for .csv files.
Thank you very much.
댓글 수: 0
채택된 답변
Josh Meyer
2017년 10월 9일
The general procedure is that you create the datastore and then convert it into a tall array. If the data is relatively straightforward then the call to datastore is simplified. But if the data has missing data, several different types, header lines, etc... then you can call additional options with datastore (see the doc).
In the simplest case it can be as easy as:
ds = datastore('path/to/my/data.csv');
T = tall(ds)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Datastore에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!