เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Boxplot of Top2b

Next a sanity check: create a boxplot of the expression level of Top2b to confirm the null mice have lower levels of Top2b expression.

Recall that you made a similar boxplot in Chapter 1 Exercise 4.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Differential Expression Analysis with limma in R

ดูคอร์ส

คำแนะนำการฝึกหัด

The ExpressionSet object eset with the doxorubicin data has been loaded in your workspace.

  • Find the row that contains the Top2b data by searching the feature data column "symbol" for "Top2b".

  • Create a boxplot using the formula syntax. The expression level should be to the left of the ~, and the genotype variable to the right.

  • Pass the feature data frame row to main to title the plot.

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Find the row which contains Top2b expression data
top2b <- which(___(eset)[___] == "Top2b")

# Plot Top2b expression versus genotype
boxplot(___(eset)[top2b, ] ~ ___(eset)[___],
        main = ___(eset)[top2b, ])
แก้ไขและรันโค้ด