Description Usage Arguments Value Examples
Inserts a column or dataframe y into a dataframe x at the specified position
1 | insert_into(x, y, where = 1)
|
x |
dataframe |
y |
dataframe |
where |
integer |
dataframe
1 2 3 | df1<-data.frame(a=3,b=4,c=5)
df2<-data.frame(X=1,Y=2)
insert_into(df1, df2, where=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.