I'd like to remove variables (columns) containing specifc name

16 Ansichten (letzte 30 Tage)
Jinho Lee
Jinho Lee am 16 Mai 2023
Beantwortet: Image Analyst am 17 Mai 2023
Hello,
I have a kind of big data table (eg. 300 variables) and I'd like to sort out the table by removing variables.
I imported csv file and it has variable names showing the pattern such as xxxx_A or yyyy_B
So I tried to use removevars function to remove all columns containing '_B' but failed
Actually I am not sure how to determine specific variables
I'd appreciate if anyone can help to sort out the table by specific column name
Thanks

Antworten (2)

Matt J
Matt J am 16 Mai 2023
Bearbeitet: Matt J am 16 Mai 2023
One way,
idx=contains(T.Properties.VariableNames,"_B" | "_A"); %T is your table
T(:,idx)=[];

Image Analyst
Image Analyst am 17 Mai 2023
Try this:
% Create sample table.
rows = 5;
xxxx_A = 1:rows;
yyyy_B = rand(rows, 1);
col3 = rand(rows, 1);
t = table(xxxx_A(:), yyyy_B(:), col3, 'VariableNames', {'xxxx_A', 'yyyy_B', 'col3'})
t = 5×3 table
xxxx_A yyyy_B col3 ______ _______ _________ 1 0.14283 0.96762 2 0.932 0.0085996 3 0.10426 0.73839 4 0.65724 0.56634 5 0.46341 0.17621
% Now remove the column called "yyyy_B"
t = removevars(t, 'yyyy_B')
t = 5×2 table
xxxx_A col3 ______ _________ 1 0.96762 2 0.0085996 3 0.73839 4 0.56634 5 0.17621

Kategorien

Mehr zu Tables finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by