如何通过重复 1 列并依次重复原始数据框的第二列来创建新数据框?
How to create new dataframe by repeating 1 column and sequentially repeating a 2nd column of original dataframe?
我正在尝试通过重复 original-df 列 1 中的值并将它们与 original-df 列 2 中的重复值相对应来创建新的数据框。但是,这些值应该以不同的方式重复每一列。例如,original-df 第 1 列的值将重复为 1,2,3,1,2,3,1,2,3。其中 original-df 第 2 列的值应重复为 1,1,1,2,2,2,3,3,3。
#here is original df
df1<-data.frame(x=1:3, y=10:12)
#I've tried the followig:
data.frame(x=df1$x,y=df1[,2])->df2
range<-1:3
data.frame(x=df1$x,y=df1$y[range,2])->df3
#I then tried this:
rep(df1$x,df1$y[l,2])->df4
#output either looks like this:
x y
1 1 10
2 2 11
3 3 12
#Or I receive an error message:
Error in df1$y[1, 2] : incorrect number of dimensions
#I expect data output to look like this:
x y
1 10
2 10
3 10
1 11
2 11
3 11
1 12
2 12
3 12
一个选项是expand
library(tidyr)
expand(df1, x, y)
或 expand.grid
来自 base R
do.call(expand.grid, df1)
我正在尝试通过重复 original-df 列 1 中的值并将它们与 original-df 列 2 中的重复值相对应来创建新的数据框。但是,这些值应该以不同的方式重复每一列。例如,original-df 第 1 列的值将重复为 1,2,3,1,2,3,1,2,3。其中 original-df 第 2 列的值应重复为 1,1,1,2,2,2,3,3,3。
#here is original df
df1<-data.frame(x=1:3, y=10:12)
#I've tried the followig:
data.frame(x=df1$x,y=df1[,2])->df2
range<-1:3
data.frame(x=df1$x,y=df1$y[range,2])->df3
#I then tried this:
rep(df1$x,df1$y[l,2])->df4
#output either looks like this:
x y
1 1 10
2 2 11
3 3 12
#Or I receive an error message:
Error in df1$y[1, 2] : incorrect number of dimensions
#I expect data output to look like this:
x y
1 10
2 10
3 10
1 11
2 11
3 11
1 12
2 12
3 12
一个选项是expand
library(tidyr)
expand(df1, x, y)
或 expand.grid
来自 base R
do.call(expand.grid, df1)