Learn R Programming

RImmPort (version 1.0.2)

mergeDomainAndSupplemental: Merge the Domain dataframe and Supplemental dataframe (long form)

Description

The Domain data list comprises of the the Domain datafrome that is in wide form, and any Supplemental dataframe that is in long form. The function mergeDomainAndSupplemental transposes the Supplemental dataframe into a wide form, and merges it with the Domain dataframe.

Usage

mergeDomainAndSupplemental(data_list)

Arguments

data_list
A list of 1) Domain dataframe and 2) any Supplemental dataframe

Value

The merged dataframe

Examples

Run this code
library(DBI)
library(sqldf)
studies_dir <- system.file("extdata", "ImmPortStudies", package = "RImmPort")
db_dir <- file.path(studies_dir, "Db")
sqlite_conn <- dbConnect(SQLite(), dbname=file.path(db_dir, "ImmPort.sqlite"))
setImmPortDataSource(sqlite_conn)
l <- getDomainDataOfStudies("Cellular Quantification", "SDY208")
df <- mergeDomainAndSupplemental(l)

Run the code above in your browser using DataLab