1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/diff_express.R
\docType{data}
\name{diff_express}
\alias{diff_express}
\title{Differential gene expression analysis results}
\format{
A data frame with 36028 rows and 5 columns. \describe{
\item{\code{name}}{gene names} \item{\code{baseMean}}{mean expression
signal across all samples} \item{\code{log2FoldChange}}{log2 fold change}
\item{\code{padj}}{Adjusted p-value}\item{\code{detection_call}}{a numeric
vector specifying whether the genes is expressed (value = 1) or not (value = 0).}}
}
\usage{
data("diff_express")
}
\description{
Differential gene expression analysis results obtained from
comparing the RNAseq data of two different cell populations using DESeq2
}
\examples{
data(diff_express)
# Default plot
ggmaplot(diff_express, main = expression("Group 1" \%->\% "Group 2"),
fdr = 0.05, fc = 2, size = 0.4,
palette = c("#B31B21", "#1465AC", "darkgray"),
genenames = as.vector(diff_express$name),
legend = "top", top = 20,
font.label = c("bold", 11),
font.legend = "bold",
font.main = "bold",
ggtheme = ggplot2::theme_minimal())
# Add rectangle around labesl
ggmaplot(diff_express, main = expression("Group 1" \%->\% "Group 2"),
fdr = 0.05, fc = 2, size = 0.4,
palette = c("#B31B21", "#1465AC", "darkgray"),
genenames = as.vector(diff_express$name),
legend = "top", top = 20,
font.label = c("bold", 11), label.rectangle = TRUE,
font.legend = "bold",
font.main = "bold",
ggtheme = ggplot2::theme_minimal())
}
|