TB = removevars(TA, varsNames) removes the variables specified by varsNames from the table TA and stores the remaining variables in T2.
+You can specify the variables by name, position, or using logical indices.
+You can also remove variables from a table using T(:, varsNames) = [].
+TB = renamevars(TA, varsNames, newNames) renames the variables in the table TA as specified by varsNames and assigns them the new names provided in newNames.
+You can also rename all the variables in a table by assigning new names to its VariableNames property using T.Properties.VariableNames = newNames.
+In this case, newNames must be a string array or a cell array of character vectors.
+