Skip to content
Snippets Groups Projects
counts_plot.Rd 517 B
Newer Older
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Generated by roxygen2: do not edit by hand
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Please edit documentation in R/counts_plot.R
Arnaud Duvermy's avatar
Arnaud Duvermy committed
\name{counts_plot}
\alias{counts_plot}
\title{Generate a density plot of gene counts}
\usage{
counts_plot(mock_obj)
}
\arguments{
\item{mock_obj}{The mock data object containing gene counts.}
}
\value{
A ggplot2 density plot.
}
\description{
This function generates a density plot of gene counts from mock data.
}
\examples{
mock_data <- list(counts = matrix(c(1, 2, 3, 4, 5, 6, 7, 8, 9), ncol = 3))
counts_plot(mock_data)
}