Learn R Programming

patPRO (version 1.1.0)

plotBacterialLoad: Plot Supplemental Bacterial Load Information.

Description

Plot the supplemental bacterial load data, which would have been obtained by qPCR for the 16S rRNA gene. Because this data is straightforward relative to the other data types, it will not require much formatting before plotting.

Usage

plotBacterialLoad(input.bac.load, subject.id, subject.id.col="SubjectID", bac.load.col="bac_load", tmpt.id.col="Time_point", y.lab="Bacterial Load", x.lab="Time Point", plot.title, mean.mark=FALSE)

Arguments

input.bac.load
The data.frame containing the bacterial load information, as well as the subject IDs and time points associated with those load data points.
subject.id
The subject identification that will be plotted. If this value is specified as blank (ie ""), then the function will assume the input data frame is of mean values, and will not attempt to select a specific subject to plot.
subject.id.col
Name of the subject ID column. Default is "SubjectID".
bac.load.col
Name of the bacterial load value column. Default is "bac_load".
tmpt.id.col
Name of the time point column. Default is "Time_point".
y.lab
Name of the y axis label to be used in the plot. Default is "Absolute Abundance".
x.lab
Name of the x axis label to be used in the plot. Default is "Time Point".
plot.title
The desired plot title.
mean.mark
Allows the user to define whether this is used to plot mean values (including standard error; set to TRUE) or if this is for a single subject. Default is FALSE.

Details

Package:
patPRO
Type:
Package
Version:
1.0.0
Date:
2015-09-18
License:
GPLv3
An overview of how to use the package, including the most important functions, is included in the supplemental R notebook patPROExampleWorkflow.html.

References

patPRO: An R package for the visualization of longitudinal microbiome data. Hannigan GD, Loesche MA, Hodkinson BP, Mehta S, Grice EA.

Examples

Run this code
data("PatProBacLoad",package="patPRO")
data("PatProMap",package="patPRO")
mergedMapBacLoad <- mergeMapMetaData(map.file=PatProMap, 
	merging.file=PatProBacLoad, 
	map.sub.id="SubjectID", 
	map.tmpt="Time_point", 
	map.smpl.id="SampleID", 
	sample.id.col="SampleID")
# Plot individual subject
bacLoad <- plotBacterialLoad(mergedMapBacLoad, 
	1, 
	bac.load.col="Num_Bacteria", 
	plot.title="Subject One Bacterial Load")
# Plot subject means
BacMean <- patientMean(x=mergedMapBacLoad, 
	sub.range=c(1:5), 
	metric.col="", 
	abundance.val="Num_Bacteria")
bacLoadMean <- plotBacterialLoad(BacMean, 
	"", 
	bac.load.col="Num_Bacteria", 
	plot.title="Mean Bacterial Load For Subjects 1-5", 
	mean.mark=TRUE)

Run the code above in your browser using DataLab