I have a data frame that looks like that:
sample<- c("s1", "s2", "s3", "s4")
spines<- c(1,0,0,1)
df<- data.frame(sample, spines)
df
sample spines
1 s1 1
2 s2 0
3 s3 0
4 s4 1
i want to create a new dataframe with all possible combination of order of the rows, but i want each sample to keep is original value of the variable spine. i want it to look, something like that:
new_df
sample spines
1 s1 1
2 s2 0
3 s3 0
4 s4 1
5 s1 1
6 s2 0
7 s4 1
8 s3 0
9 s1 1
10 s3 0
11 s4 1
12 s2 0
13 s1 1
14 s3 0
15 s2 0
16 s4 1
17 s1 1
18 s4 1
19 s2 0
20 s3 0
21 s1 1
22 s4 1
23 s3 0
24 s2 0
25 s2 0
26 s1 1
27 s3 0
28 s4 1
29 s2 0
30 s1 1
31 s4 1
32 s3 0
I cant find a way to it. any ideas and suggestions?
Dor
One solution to your problem as described (assuming you have just filled the
spine
column with random numbers for illustrative purposes in your expected output) would be: