remove variables except for prespecified variables from a table

14 次查看(过去 30 天)
Suppose I have a table T with the set of variables
Date Location Visitors Purchases Item1 Item2 Item3 ...
I just want to keep variables
Date Visitors
and remove the rest of varibles. One can use removevars function but need to write down all variables that will be deleted. Is there any simpler way?

采纳的回答

Walter Roberson
Walter Roberson 2021-8-15
newtable = T(:,{'Date', 'Visitors'});

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by