0

I want to duplicate my data frame and store it for later use. Can anyone please help me with the function?

I tried the rm function and the copy function but it is not working

df1 <- copy(df)

The function copy is not working.

deepseefan
  • 3,701
  • 3
  • 18
  • 31

1 Answers1

1

Simply make new variable df1 and give it the value of df:

df1 <- df
Nuclear03020704
  • 549
  • 9
  • 22