16.3 rename()

You can rename a column using the rename() function.

For example, we can rename column GeneSymbol to Symbol, the following way:

rename(geneexp, Symbol=GeneSymbol)

The first argument is the data, then comes the column(s) to rename in the format: new_name=old_name.