lorenzCurve: Lorenz curve

View source: R/plotLorenzCurve.R

lorenzCurveR Documentation

Lorenz curve

Description

Plots a Lorenz curve derived from the frequency of the amino acid sequences.

Usage

lorenzCurve(repertoire_ids, study_table)

Arguments

repertoire_ids

A character vector of repertoire_id names in list.

study_table

A tibble generated using the LymphoSeq function readImmunoSeq or productiveSeq. "duplicate_frequency" is a required column.

Details

The Gini coefficient is an alternative metric used to calculate repertoire diversity and is derived from the Lorenz curve. The Lorenz curve is drawn such that x-axis represents the cumulative percentage of unique sequences and the y-axis represents the cumulative percentage of reads. A line passing through the origin with a slope of 1 reflects equal frequencies of all sequences. The Gini coefficient is the ratio of the area between the line of equality and the observed Lorenz curve over the total area under the line of equality.

The plot is made using the package ggplot2 and can be reformatted using ggplot2 functions. See examples below.

Value

Returns a Lorenz curve.

See Also

An excellent resource for examples on how to reformat a ggplot can be found in the R Graphics Cookbook online (http://www.cookbook-r.com/Graphs/).

Examples

file_path <- system.file("extdata", "TCRB_sequencing", package = "LymphoSeq2")

stable <- readImmunoSeq(path = file_path)

repertoire_ids <- stable %>% dplyr::pull(repertoire_id) %>% unique()

lorenzCurve(repertoire_ids = repertoire_ids, study_table = stable)

atable <- productiveSeq(study_table = stable, aggregate = "junction_aa")

repertoire_ids <- atable %>% dplyr::pull(repertoire_id) %>% unique()

lorenzCurve(repertoire_ids = repertoire_ids, study_table = atable)

# Change the legend labels, line colors, and add a title
repertoire_ids <- c("TRB_Unsorted_0", "TRB_Unsorted_32", 
   "TRB_Unsorted_83", "TRB_Unsorted_949", "TRB_Unsorted_1320")

lorenz_curve <- lorenzCurve(repertoire_ids = repertoire_ids, study_table = atable)

labels <- c("Day 0", "Day 32", "Day 83", "Day 949", "Day 1320")

colors <- c("navyblue", "red", "darkgreen", "orange", "purple",
             "yellow", "pink", "lightgreen", "cyan", "maroon")

lorenz_curve + 
ggplot2::scale_color_manual(name = "repertoire_ids", 
                            breaks = repertoire_ids, 
                            labels = labels, values = colors) + 
ggplot2::ggtitle("Figure Title")

elulu3/LymphoSeqTest documentation built on Aug. 27, 2022, 5:47 a.m.