I have a dataset called “J_BL5H1”, this includes :
Var1 Freq
4 10
8 10
10 13
11 7
13 3
17 10
19 10
25 1
26 4
27 8
53 13
From this dataset, I want to find all Var1s seperately, and I want to called this new data like J_BL5H1JNVar1Number, here Var1Number denotes to specific Var1s, e.g. “4, 8, 10”.
I will use this :
J_BL5H1JNVar1Number <- J_BL5H1$Freq[1]
Here, I want to replace Var1Number to “Var1” values in the old data.
For example, if I want to know the “Freq[4]”, my new data should be called like “J_BL5H1JN11”, the “Var1Number” will be automatically replaced by the Var1 of Freq[4], in this case by 11.
I hope I can clearly state my problem, Thanks.
First use
pasteto create the names of the data.sets:Then use a loop to
assignthe according values to the data sets:Now you have the data sets in your workspace:
Btw, if you want to access the different data sets without actually calling them every time, you can access them by name using the
getfunction: