Loading...

vastorbit.VastColumn.rename

VastColumn.rename(new_name: str, inplace: bool = True) VastFrame

Renames the VastColumn. This function is not directly applied to the input object.

Warning

SQL code generation will be slower if the VastFrame has been transformed multiple times, so it’s better to use this method when first preparing your data. It is even recommended to use the VastFrame.select() method directly and perform all renaming within a single operation.

Parameters:
  • new_name (str) – The new VastColumn alias.

  • inplace (bool, optional) – If set to True, the VastFrame is replaced with the new relation.

Returns:

result.

Return type:

VastFrame

Examples

Let’s begin by importing vastorbit.

import vastorbit as vo

Hint

By assigning an alias to vastorbit, we mitigate the risk of code collisions with other libraries. This precaution is necessary because vastorbit uses commonly known function names like “average” and “median”, which can potentially lead to naming conflicts. The use of an alias ensures that the functions from vastorbit are used as intended without interfering with functions from other libraries.

Let us create a dummy dataset and rename one of its columns:

vdf = vo.VastFrame(
    {
        "val" : [0, 10, 20],
        "cat": ['a', 'b', 'c'],
    },
)
123
val
Integer
Abc
cat
Varchar(1)
110b
220c
30a
Rows: 1-3 | Columns: 2

We can copy the “val” column, and name the new column:

vdf["val"].rename("value")
Abc
cat
Varchar(1)
123
value
Integer
1a0
2b10
3c20
Rows: 1-3 | Columns: 2

See also

VastColumn.add_copy() : Adds a copy VastColumn to the parent VastFrame.