Import csv data with readtable is incorrect data.

9 次查看(过去 30 天)
Using readtable function to input 2 columns data from csv file, but it divide to 3 columns. Here is my data and import table.
T_id_relation = readtable('store_id_relation.csv');

采纳的回答

Akira Agata
Akira Agata 2018-12-6
Please specify 'Delimiter' option, like:
T = readtable('store_id_relation.csv','Delimiter',',');
The result is as follows.
>> T = readtable('store_id_relation.csv','Delimiter',',')
T =
150×2 table
air_store_id hpg_store_id
______________________ ______________________
'air_63b13c56b7201bd9' 'hpg_4bc649e72e2a239a'
'air_a24bf50c3e90d583' 'hpg_c34b496d0305a809'
'air_c7f78b4f3cba33ff' 'hpg_cd8ae0d9bbd58ff9'
'air_947eb2cae4f3e8f2' 'hpg_de24ea49dc25d6b8'
...

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by