View source: R/misc-deprecated.R
refGraphDF | R Documentation |
Create a data.frame from the two data.frames after filtering the columns and rows.
refGraphDF(df1, df2, cond1, cond2 = cond1,
select = intersect(row.names(df1), row.names(df2)))
df1 |
data.frame for a first study |
df2 |
data.frame for a second study |
cond1 |
vector of strings of character. Names of the columns to keep for df1 |
cond2 |
vector of strings of character. Names of the columns to keep for df2. default: "cond2=cond1" |
select |
vector of strings of character. Names of the rows to keep in df1 and df2. default: intersect(row.names(df1),row.names(df2))) |
a data.frame created from the junction of the df1 and df2 after the filtering.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.