Create an ExpressionSet object
Managing 3 different data sets for one experiment is tedious and error-prone, especially if you need to perform any filtering. Combine the 3 data sets from the leukemia experiment into a unified object using the Bioconductor class ExpressionSet.
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
Differential Expression Analysis with limma in R
คำแนะนำการฝึกหัด
The expression matrix (x), feature data (f), and phenotype data (p) are loaded in your workspace.
Create a new ExpressionSet object using the function
ExpressionSet.Pass the expression matrix to the
assayDataargument.Pass the phenotype data frame to the
phenoDataargument.Pass the feature data frame to the
featureDataargument.
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
# Load package
library(Biobase)
# Create ExpressionSet object
eset <- ___(assayData = ___,
phenoData = AnnotatedDataFrame(___),
featureData = AnnotatedDataFrame(___))
# View the number of features (rows) and samples (columns)
dim(eset)