how do i extract columns with specific row names from .csv file

조회 수: 3 (최근 30일)
barath V
barath V 2020년 4월 9일
댓글: barath V 2020년 4월 9일
clc
clear all
file = fullfile('C:\Users\barath\Downloads\full_data.csv')
files = readtable(file)
in = files.location('India',:)
%error i get is: Error using tabular/dotParenReference (line 95)Unrecognized row name 'India'.%

채택된 답변

Mehmed Saad
Mehmed Saad 2020년 4월 9일
ind =strcmp(files.location,'India');
files(ind,:)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by