Skip to content
Snippets Groups Projects
Select Git revision
  • da6d84274df972badce3cb6da4b0f971db8cfee5
  • master default protected
  • v2.1.1
  • v2.1.0
4 results

counts_plot.Rd

Blame
  • counts_plot.Rd 517 B
    % 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)
    }