DataframeCopy
Creates a new variable that is a copy of the target dataframe. This is usefule for doing operations that modify a dataset while maintaining an unmodified version of the original dataframe.
Examples
Example 1 - Copy a DataFrame with Default Behavior
Use this option to create a full copy of a dataframe without applying any modifications. This is useful when you want to make changes or perform analysis without altering the original dataset.
#> DataframeCopy
AFLEFT
appleStockDfCopy = appleStockDf.copy() AFRIGHT