LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Differential Expression Analysis with limma in R

Kurs anzeigen

Anleitung zur Übung

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.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

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

# Plot Top2b expression versus genotype
boxplot(___(eset)[top2b, ] ~ ___(eset)[___],
        main = ___(eset)[top2b, ])
Code bearbeiten und ausführen