% Generated by roxygen2: do not edit by hand % Please edit documentation in R/counts_plot.R \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) }