Is there a way to only use data from one CSV file that is not the same as this other CSV file? I recently split some data to conduct EFA and CFA analysis. I need to not use the information that will use to conduct the EFA analysis because then it serves no point to randomly split the data.
So how do I only use the data that I did not use in the CFA? If anyone can help please, it would be much appreciated.
Edit:
what I did was the following
Usage <-anti_join(file one, file two, by ='the column in which I could separate by')
then I just exported the file into a CSV, thank you all!