# NOT RUN {
# Load the standard iris dataset, already built into R
data(iris)
# First wrap the data
iris_box <- xform_wrap(iris)
# We wish to refer to the variables "Sepal.Length" and
# "Sepal.Width" as "SL" and "SW"
iris_box <- rename_wrap_var(wrap_object = iris_box, xform_info = "column1->SL")
iris_box <- rename_wrap_var(wrap_object = iris_box, xform_info = "Sepal.Width->SW")
# }
Run the code above in your browser using DataLab