I have 102 text files, each containing of same type of data. Suppose data it is stored in variable d1 of the file f1.
In R:
I want to make plot between data in two files. say d1 vs d2 or d45 vs d85
I need to do these for all combinations ( 102C2 combinations)
How do I do that?
This is a bit of an out there request, as there is no way you would be able to make sense of that many plots. E.g.:
Gives a total of 5151 plots for the unique combinations between the 102 sets of data. If your professor wants to manually search through all those plots, he better pour himself a large coffee. I would seriously reconsider what you are trying to find out from this data and maybe redefine the scope of your investigation.
With that said, here’s some potential code that may or not be good advice given the circumstances. In fact, I’ll go so far as to suggest not running the below code with all of your files lest your computer explode.