--- title: > Using **SIGHTS** R-package author: > [Elika Garg](mailto:elika.garg@mail.mcgill.ca), [Carl Murie](mailto:cmurie@fredhutch.org) and [Robert Nadon](mailto:robert.nadon@mcgill.ca) date: "`r Sys.Date()`" package: "`r packageVersion('sights')`" abstract: > Identifying rare biological events in high-throughput screens requires using the best available normalization and statistical inference procedures. It is not always clear, however, which algorithms are best suited for a particular screen. The Statistics and dIagnostics Graphs for High Throughput Screening (**SIGHTS**) R package is designed for statistical analysis and visualization of HTS assays. It provides graphical diagnostic tools to guide researchers in choosing the most appropriate normalization algorithm and statistical test for identifying active constructs. output: rmarkdown::html_document: theme: lumen highlight: tango toc: true toc_depth: 3 number_sections: true fig_caption: yes toc_float: true code_folding: show vignette: > %\VignetteIndexEntry{Using **SIGHTS** R-package} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} bibliography: bibliography.bib csl: bioinformatics.csl --- ```{r global_options, include=FALSE} library(knitr) opts_chunk$set(tidy = TRUE, results = 'hide', comment = ">>", cache = FALSE, fig.height = 4, fig.width = 4, collapse = TRUE, fig.align='center') ``` _______________________________ # Introduction The `sights` package provides numerous normalization methods that correct the three types of bias that affect High-Throughput Screening (HTS) measurements: overall plate bias, within-plate spatial bias, and across-plate bias. Commonly-used normalization methods such as Z-scores (or methods such as percent inhibition/activation which use within-plate controls to normalize) correct only overall plate bias. Methods included in this package attempt to correct all three sources of bias and typically give better results. Two statistical tests are also provided: the standard one-sample t-test and the recommended one-sample Random Variance Model (RVM) t-test, which has greater statistical power for the typically small number of replicates in HTS. Correction for the multiple statistical testing of the large number of constructs in HTS data is provided by False Discovery Rate (FDR) correction. The FDR can be described as the proportion of false positives among the statistical tests called significant. Included graphical and statistical methods provide the means for evaluating data analysis choices for HTS assays on a screen-by-screen basis. These graphs can be used to check fundamental assumptions of both raw and normalized data at every step of the analysis process. > Citing Methods Please cite the `sights` package and specific methods as appropriate. References for the methods can be found in this vignette, on their specific help pages, and in the manual. They can also be accessed by `help(sights_method_name)` in R. For example: ```{r help, eval=FALSE} # Help page of SPAWN with its references help(normSPAWN) ``` The package citation can be accessed in R by: ```{r cite, results="show"} citation("sights") ``` # Getting Started ## Installation and loading 1. Please install the package directly from Bioconductor and load it. Note that SIGHTS requires a minimum R version of 3.3. ``` {r installation, eval=FALSE} if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("sights") library("sights") ``` 2. This should also install and load the packages that SIGHTS imports: ggplot2 [@wickham2009ggplot2], reshape2 [@wickham2007reshaping], qvalue [@dabney2010qvalue], MASS [@venables2002mass], and lattice [@sarkar2008lattice]. Otherwise, you can install/update these packages manually. ``` {r dependencies, eval=FALSE} # Installing packages BiocManager::install(c("ggplot2", "reshape2", "lattice", "MASS", "qvalue")) # Updating packages BiocManager::install("BiocUpgrade") BiocManager::install() ``` ## Importing and exporting data All SIGHTS normalization functions require that the data be arranged such that each plate is a column and each row is a well. The arrangement within each plate should be by-row first, then by-column. For more details and example, see `help("ex_dataMatrix")`. This required arrangement can be done in Microsoft Excel before importing the data into R, although advanced users may prefer to do so in R as needed. 1. The datasets within SIGHTS can be loaded by: ```{r data, eval=FALSE} data("ex_dataMatrix") help("ex_dataMatrix") ## Required data arrangement (by-row first) is explained. data("inglese") ``` 2. Your own data can be imported by giving the path of your file: - If it is a .csv or .txt file, run ```{r input_csv, eval=FALSE} read.csv("~/yourfile.csv", header=TRUE, sep=",") ## '~' is the folder location of your file 'yourfile.csv'. ## Use header=TRUE if you have column headers (recommended); otherwise, use header=FALSE. ## N.B. Be sure to use a forward slash ('/') to separate folder names. ``` - If it is a Microsoft Excel file, you can import it directly by installing another package: ```{r input_excel, eval=FALSE} install.packages("xlsx") ## This installs the xlsx package which enables import/export of Excel files. library("xlsx") read.xlsx("~/yourfile.xlsx", sheetIndex = 1) # or read.xlsx("~/yourfile.xlsx", sheetName = "one") ## sheetIndex is the sheet number where your data is stored in 'yourfile.xlsx'; sheetName is the name of that sheet. ``` 3. Similarly any object saved in R (e.g. normalized results) can be exported as .csv or .xlsx files: ```{r output, eval=FALSE} write.csv(object_name, "~/yourresults.csv") ## As a .csv file write.xlsx(object_name, "~/yourresults.xlsx") ## As a Microsoft Excel file (requires the "xlsx" package) ``` ## Information about data 1. There are two datasets provided within SIGHTS: - CMBA data [@murie2015improving], see `help("ex_dataMatrix")` - Inglese *et. al.* data [@inglese2006quantitative], see `help("inglese")` 2. Some basic information about data (including your own data after importing) can be accessed by various functions. For example, information about the Inglese *et al.* data set can be obtained as follows: ```{r information, eval=FALSE} View(inglese) ## View the entire dataset edit(inglese) ## Edit the dataset head(inglese) ## View the top few rows of the dataset str(inglese) ## Get information on the structure of the dataset summary(inglese) ## Get a summary of variables in the dataset names(inglese) ## Get the variable names of the dataset ``` ## Information about methods 1. There are several methods provided within SIGHTS: - Normalization: - Z, Robust Z (see @malo2006statistical), - Loess [@baryshnikova2010quantitative], - Median Filter [@bushway2011optimization], - R [@wu2008quantitative], and - SPAWN [@murie2015improving]. - Statistical testing: - one-sample t-test, - one-sample RVM t-test [@malo2006statistical; @wright2003random], and - FDR correction [@storey2002direct]. - Plotting: - 3d plot, - heatmap, - auto-correlation plot, - scatter plot, - boxplot, - inverse-gamma fit plot, and - histograms. See `help("normSights")`, `help("statSights")`, `help("plotSights")`, and the help pages of individual methods for more information. 2. Information about the package functions can be accessed by: ```{r methods, eval=FALSE} ls("package:sights") ## Lists all the functions and datasets available in the package lsf.str("package:sights") ## Lists all the functions and their usage args(plotSights) ## View the usage of a specific function example(topic = plotSights, package = "sights") ## View examples of a specific function ``` ## Quick reference 1. Normalization - All normalization functions are accessible either via `normSights()` or their individual function names (e.g. `normSPAWN()`). 2. Statistical tests - All statistical testing functions are accessible either via `statSights()` or their individual function names (e.g. `statRVM()`). 3. Plots - All plotting functions are accessible either via `plotSights()` or their individual function names (e.g. `plotAutoco()`). The results of these functions can be saved as objects and called by their assigned names. For example: ``` {r example, fig.show='hide', message=FALSE, warning=FALSE} library(sights) data("inglese") # Normalize spawn_results <- normSPAWN(dataMatrix = inglese, plateRows = 32, plateCols = 40, dataRows = NULL, dataCols = 3:44, trimFactor = 0.2, wellCorrection = TRUE, biasMatrix = NULL, biasCols = 1:18) ## Or spawn_results <- normSights(normMethod = "SPAWN", dataMatrix = inglese, plateRows = 32, plateCols = 40, dataRows = NULL, dataCols = 3:44, trimFactor = 0.2, wellCorrection = TRUE, biasMatrix = NULL, biasCols = 1:18) ## Access summary(spawn_results) # Apply statistical test rvm_results <- statRVM(normMatrix = spawn_results, repIndex = rep(1:3, each = 3), normRows = NULL, normCols = 1:9, testSide = "two.sided") ## Or rvm_results <- statSights(statMethod = "RVM", normMatrix = spawn_results, repIndex = c(1,1,1,2,2,2,3,3,3), normRows = NULL, normCols = 1:9, ctrlMethod = NULL, testSide = "two.sided") ## Access head(rvm_results) # Plot autoco_results <- plotAutoco(plotMatrix = spawn_results, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1:9, plotName = "SPAWN_Inglese", plotSep = TRUE) ## Or autoco_results <- plotSights(plotMethod = "Autoco", plotMatrix = spawn_results, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = c(1,2,3,4,5,6,7,8,9), plotName = "SPAWN_Inglese", plotSep = TRUE) ## Access autoco_results autoco_results[[1]] ``` # Navigating through SIGHTS We recommend the following workflow: - Visualize the raw data to identify bias, if any: Types of bias | Expectation, in absence of bias | Identification, in presence of bias ---------- | ------------------------ | ----------------------- Plate bias | Replicate plates have similar overall distributions. | Boxplots show different medians and/or variability among replicate plates. Within-plate spatial bias | Data within a plate is not affected by well position. | Heatmaps and 3-D plots show row and/or column effects. Auto-correlation plots show non-zero correlations at various lags; typical patterns include cyclical and/or decreasing correlation values. Across-plate bias | Assuming few true 'hits' within the screen, the majority of data points should be uncorrelated across replicate plates. Only the hits should be correlated. | Scatter plots of replicate plates show strong correlation. - Try different normalization methods and visualize the results, comparing them to raw data - Normalize the raw data using the method that best minimizes bias - Conduct statistical tests on the normalized data and visualize the p-value distribution - Apply FDR correction We will use the Inglese *et. al.* dataset [@inglese2006quantitative] to demonstrate application of SIGHTS and interpretation of results. ```{r inglese} library("sights") data("inglese") ``` - Each column represents one plate of 1536-well plates - 1^st^ 4 columns and last 4 columns have controls - these have been removed as they are not necessary for the normalization methods - As required, data are arranged by row so that the well index goes from (A01, A02, A03, ...) - There are 14 concentrations with three replicates each We will analyze data from two of the concentrations separately: 1. Lowest Concentration (Three Replicate Plates: Exp1R1-Exp1R3) For these lowest concentration plates, the concentration is so low that even active molecules (as determined by a titration series) do not show activity. We use these data to show what normalized null data should look like. 2. 9^th^ Concentration (Three Replicate Plates: Exp9R1-Exp9R3) For these higher concentration plates, some compounds show activity levels. We use these data to illustrate what data for a typical experiment might look like. ## Choose Normalization Method SIGHTS has three graphical methods for visually detecting spatial bias within plates: standard "Heatmap" and "3d" plots, and autocorrelation plots ("Autoco") [@murie2015improving]. ### Replicates of Lowest Concentration (Exp1R1-Exp1R3) 1. Raw Data The following plots will show that the raw data are affected by the three types of bias described above: + overall plate bias + within-plate spatial bias + across-plate bias ```{r raw_bias0, fig.cap="Boxplots: There is overall plate bias, since the median values of the three replicate plates differ."} sights::plotSights(plotMethod = "Box", plotMatrix = inglese, plotCols = 3:5, plotName = "Raw Exp1") ``` ```{r raw_bias1, fig.show='hold'} sights::plotSights(plotMethod = "Heatmap", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 3, plotName = "Raw Exp1") sights::plotSights(plotMethod = "3d", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 3, plotName = "Raw Exp1") sights::plotSights(plotMethod = "Autoco", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 3:5, plotSep = FALSE, plotName = "Raw Exp1") ``` Heatmap, 3d plot, and auto-correlation plots show that there is non-trivial within-plate spatial bias, strongly indicated by the high auto-correlations and the cyclical patterns in the auto-correlation plots. ```{r raw_bias2, fig.cap="Scatter plot: Across-plate bias is present, as indicated by the positive correlation between replicates. When screens have few true hits, replicate plates should be uncorrelated except within the hit range. Depending on the screen, hits could be represented by high or low scores or, as in this screen, by both. The blue line is the loess robust fit; the dashed line is the identity line."} sights::plotSights(plotMethod = "Scatter", plotMatrix = inglese, repIndex = c(1,1), plotRows = NULL, plotCols = 3:4, plotName = "Raw Exp1", alpha=0.2) ``` _______________________ > The preferred normalization method is usually the one that minimizes all three types of bias: plate bias, within-plate spatial bias, and across-plate bias. > Some of the available methods within `sights` are demonstrated below for illustration purposes. Normally, you may wish to examine numerous methods to see which one is preferred for your dataset. ____________________ 2. Z-score normalization Z-scores correct for plate bias but do not correct the other two types of bias: ```{r z_bias0, fig.cap="Boxplots: Z-score normalization has corrected overall plate bias, as the medians of the three replicate plates are approximately equal."} Z.norm.inglese.01 <- sights::normSights(normMethod = "Z", dataMatrix = inglese, dataRows = NULL, dataCols = 3:5) sights::plotSights(plotMethod = "Box", plotMatrix = Z.norm.inglese.01, plotCols = 1:3, plotName = "Z Exp1") ``` ```{r z_bias1, fig.show='hold'} sights::plotSights(plotMethod = "Heatmap", plotMatrix = Z.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "Z Exp1") sights::plotSights(plotMethod = "3d", plotMatrix = Z.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "Z Exp1") sights::plotSights(plotMethod = "Autoco", plotMatrix = Z.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1:3, plotSep = FALSE, plotName = "Z Exp1") ``` Heatmap, 3d plot, and auto-correlation plots show that within-plate spatial bias is unchanged from the raw data, because Z-scores are simply a linear transformation of the raw data. ```{r z_bias2, fig.cap="Scatter plot: Similarly, the correlational pattern between replicates (across-plate bias) remains. Note, though, that the blue loess line now substantially overlaps the identity line because Z-score normalization corrects for overall plate bias."} sights::plotSights(plotMethod = "Scatter", plotMatrix = Z.norm.inglese.01, repIndex = c(1,1), plotRows = NULL, plotCols = 1:2, plotName = "Z Exp1", alpha=0.2) ``` ________________________ 3. SPAWN normalization SPAWN scores correct all three types of bias in these data. [@murie2015improving]. In this example, well correction is used and the "Bias Template" [@murie2013control; @murie2015improving] is estimated from the 6 lowest concentration plates (3 replicates per concentration for a total of 18 plates). ```{r spawn_bias0, fig.cap="Boxplots: SPAWN has removed plate bias, as the medians of the three replicate plates are approximately equal."} SPAWN.norm.inglese.01 <- sights::normSights(normMethod = "SPAWN", dataMatrix = inglese, plateRows = 32, plateCols = 40, dataRows = NULL, dataCols = 3:44, trimFactor = 0.2, wellCorrection = TRUE, biasCols = 1:18) sights::plotSights(plotMethod = "Box", plotMatrix = SPAWN.norm.inglese.01, plotCols = 1:3, plotName = "SPAWN Exp1") ``` ```{r spawn_bias1, fig.show='hold'} sights::plotSights(plotMethod = "Heatmap", plotMatrix = SPAWN.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "SPAWN Exp1") sights::plotSights(plotMethod = "3d", plotMatrix = SPAWN.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "SPAWN Exp1") sights::plotSights(plotMethod = "Autoco", plotMatrix = SPAWN.norm.inglese.01, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1:3, plotSep = FALSE, plotName = "SPAWN Exp1") ``` Heatmap, 3d plot, and auto-correlation plots show that SPAWN has removed within-plate spatial bias, as indicated by the near zero correlations at each lag. ```{r spawn_bias2, fig.cap="Scatter plot: SPAWN has removed across-plate bias, as indicated by the near zero correlations between replicate plates."} sights::plotSights(plotMethod = "Scatter", plotMatrix = SPAWN.norm.inglese.01, repIndex = c(1,1), plotRows = NULL, plotCols = 1:2, plotName = "SPAWN Exp1", alpha=0.2) ``` ____________________ ### Replicates of 9^th^ Concentration (Exp9R1-Exp9R3) 1. Raw Data The raw data for the 9th concentration are also affected by the three types of bias described above: + plate bias + within-plate spatial bias + across-plate bias ```{r raw_bias9, fig.cap="Boxplots: There is overall plate bias, since the median values of the three replicate plates differ."} sights::plotSights(plotMethod = "Box", plotMatrix = inglese, plotCols = 27:29, plotName = "Raw Exp9") ``` ```{r raw_bias10, fig.show='hold'} sights::plotSights(plotMethod = "Heatmap", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 27, plotName = "Raw Exp9") sights::plotSights(plotMethod = "3d", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 27, plotName = "Raw Exp9") sights::plotSights(plotMethod = "Autoco", plotMatrix = inglese, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 27:29, plotSep = FALSE, plotName = "Raw Exp9") ``` Heatmap, 3d plot, and auto-correlation plots show that there is non-trivial within-plate spatial bias, strongly indicated by the high auto-correlations and the cyclical patterns in the auto-correlation plots. ```{r raw_bias11, fig.cap="Scatter plot: Across-plate bias is present, as indicated by the positive correlation between replicates."} sights::plotSights(plotMethod = "Scatter", plotMatrix = inglese, repIndex = c(1,1), plotRows = NULL, plotCols = 27:28, plotName = "Raw Exp9", alpha=0.2) ``` ______________________________ 3. Z-score normalization Because Z-score normalization does not correct spatial bias, it is not recommended for these data. We demonstrate SPAWN, one of the recommended normalization methods, which has been shown to perform the best among the available methods for these data. See @murie2015improving for the comparisons and for additional analyses which examined the various normalization methods separately for active and inactive molecules. 2. SPAWN normalization SPAWN scores correct all three types of bias in these data. ```{r spawn_bias9, fig.cap="Boxplots: SPAWN has removed plate bias, as the medians of the three replicate plates are approximately equal."} SPAWN.norm.inglese.09 <- sights::normSights(normMethod = "SPAWN", dataMatrix = inglese, plateRows = 32, plateCols = 40, dataRows = NULL, dataCols = 3:44, trimFactor = 0.2, wellCorrection = TRUE, biasCols = 1:18)[,25:27] sights::plotSights(plotMethod = "Box", plotMatrix = SPAWN.norm.inglese.09, plotCols = 1:3, plotName = "SPAWN Exp9") ``` ```{r spawn_bias10, fig.show='hold'} sights::plotSights(plotMethod = "Heatmap", plotMatrix = SPAWN.norm.inglese.09, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "SPAWN Exp9") sights::plotSights(plotMethod = "3d", plotMatrix = SPAWN.norm.inglese.09, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1, plotName = "SPAWN Exp9") sights::plotSights(plotMethod = "Autoco", plotMatrix = SPAWN.norm.inglese.09, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1:3, plotSep = FALSE, plotName = "SPAWN Exp9") ``` Heatmap, 3d plot, and auto-correlation plots show that SPAWN has removed within-plate spatial bias, as indicated by the near zero correlations at each lag. ```{r spawn_bias11, fig.cap="Scatter plot: The circular pattern for the majority of data points near zero indicates that across-plate bias has been greatly reduced. This is also shown by the approximately horizontal blue loess line within that range. Data points outside of that range are potential hits."} sights::plotSights(plotMethod = "Scatter", plotMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1), plotRows = NULL, plotCols = 1:2, plotName = "SPAWN Exp9", alpha=0.2) ``` _______________________________ ## Statistical Testing Both the standard one-sample t-test and the Random Variance Model (RVM) one-sample t-test [@wright2003random; @malo2006statistical] are available. Because the standard t-test tends to perform poorly with few replicates, the RVM test is generally recommended [@murie2009comparison; @murie2015improving]. False Discovery Rate (FDR) methods correct for multiple testing. The method available in SIGHTS is Storey's q-value method [@storey2002direct]. Please see the qvalue package [@dabney2010qvalue] [documentation](https://bioconductor.org/packages/release/bioc/vignettes/qvalue/inst/doc/qvalue.pdf) for more information on FDR correction. 1. One-sample t-test Without FDR: ```{r t, fig.cap="P-value histogram: Uncorrected for multiple testing, these nominal p-values would generate many false positives.", results='show'} SPAWN.norm.inglese.09.t <- sights::statSights(statMethod = "T", normMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1,1), normRows = NULL, ctrlMethod = NULL, testSide = "two.sided") summary(SPAWN.norm.inglese.09.t) ## The 5th column in the result matrix has the p-values, and thus, it will be selected for histogram below. sights::plotSights(plotMethod = "Hist", plotMatrix = SPAWN.norm.inglese.09.t, plotRows = NULL, plotCols = 5, plotAll = FALSE, plotSep = TRUE, colNames = "Exp9", plotName = "t-test") ``` ____________________________________ With FDR: When corrected for multiple testing, "q-values" are generated. Often, in screening contexts, q-values of 0.20 or smaller might be appropriate for follow-up. ```{r t_fdr, results='show'} SPAWN.norm.inglese.09.t.fdr <- sights::statFDR(SPAWN.norm.inglese.09.t, ctrlMethod = "smoother") summary(SPAWN.norm.inglese.09.t.fdr) ``` 2. RVM test Assumption checking: ```{r rvm, fig.cap="Inverse Gamma fit plot: The fit of the variance distribution is reasonably close to theoretical expectation and so the RVM test is appropriate for these data.", results='show'} SPAWN.norm.inglese.09.rvm <- sights::statSights(statMethod = "RVM", normMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1,1), normRows = NULL, ctrlMethod = NULL, testSide = "two.sided") summary(SPAWN.norm.inglese.09.rvm) sights::plotSights(plotMethod = "IGFit", plotMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1,1)) ``` _____________________________________ Without FDR: ```{r rvm_hist, fig.cap="P-value histogram: Uncorrected for multiple testing, these nominal p-values would generate many false positives."} sights::plotSights(plotMethod = "Hist", plotMatrix = SPAWN.norm.inglese.09.rvm, plotRows = NULL, plotCols = 5, colNames = "Exp9", plotName = "RVM test") ``` __________________________________ With FDR: When corrected for multiple testing, "q-values" are generated. Often, in screening contexts, q-values of 0.20 or smaller might be appropriate for follow-up. ```{r rvm_fdr, results='show'} SPAWN.norm.inglese.09.rvm.fdr <- sights::statFDR(SPAWN.norm.inglese.09.rvm, ctrlMethod = "smoother") summary(SPAWN.norm.inglese.09.rvm.fdr) ``` # Advanced Plotting ## Basic modifications All SIGHTS plotting functions, which use the ggplot2 package [@wickham2009ggplot2] (i.e., all except `plot3d` that uses lattice graphics), have an ellipsis argument ("...") which passes on additional parameters to the specific ggplot _geom_ being used in that function. For example, the default plot title and the bar colors of the histogram can be modified as follows: ```{r ellipsis, fig.cap="Ellipsis: Add parameters to ggplot geom [@wickham2009ggplot2]."} sights::plotHist(plotMatrix = SPAWN.norm.inglese.09.rvm, plotCols = 5, plotAll = TRUE, binwidth = 0.02, fill = 'pink', color = 'black', plotName = "RVM test Exp9") ``` ______________________________ ## Extended modifications All SIGHTS plotting functions, which use ggplot, produce ggplot objects that can be modified. Other packages which provide more plotting options can be installed as well: ggthemes [@arnold2015package], gridExtra [@auguie2015package]. ```{r extra, eval=FALSE} install.packages("ggthemes") ## This installs the ggthemes package, which has various themes that can be used with ggplot objects. library("ggthemes") install.packages("gridExtra") ## This installs the gridExtra package, which enables arrangement of plot objects. library("gridExtra") ``` ```{r exlib, echo=FALSE} library("ggthemes") library("gridExtra") ``` Below are some examples of the plotting modifications that can be achieved using ggplot2/ggthemes/gridExtra [@wickham2009ggplot2, @arnold2015package, @auguie2015package] functions: 1. Layers can be added that override defaults. However, faceting is not possible owing to dataset formatting within SIGHTS functions. ```{r gg, fig.cap="Layers: Add layers like ggplot2 [@wickham2009ggplot2]."} b <- sights::plotBox(plotMatrix = inglese, plotCols = 33:35) b + ggplot2::geom_boxplot(fill = c('rosybrown', 'pink', 'thistle')) + ggthemes::theme_igray() + ggplot2::labs(x = "Sample_11 Replicates", y = "Raw Values") ``` Note: When plotSep = TRUE, a list of plot objects is produced, which can be called individually and modified, as in the example below. __________________ 2. Outliers can be removed from plots by limiting the axes in one of 2 ways. ```{r lim, fig.cap=c("Original plot: All points in the original data are plotted, without setting any data limits.", "Constrained limits: Data are constrained before plotting, so that points outside of the limits are not considered when drawing aspects of the plot that are estimated from the data such as the loess regression line. Note that the line differs from the original plot above.", "Zoomed-in limits: Original data are used but plot only shows the data within the specified limits. Note, however, that the line is the same within the restricted range as in the original plot above.")} s <- sights::plotScatter(plotMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1,1)) s[[2]] + ggplot2::labs(title = "Original Scatter Plot") s[[2]] + ggplot2::lims(x = c(-5,5), y = c(-5,5)) + ggplot2::labs(title = "Constrained Scatter Plot") s[[2]] + ggplot2::coord_cartesian(xlim = c(-5,5), ylim = c(-5,5)) + ggplot2::labs(title = "Zoomed-in Scatter Plot") ``` ____________________ 3. Different plots can be arranged in the same window. ```{r silent, fig.show='hide'} box <- sights::plotSights(plotMethod = "Box", plotMatrix = SPAWN.norm.inglese.09, plotCols = 1:3) + ggplot2::theme(plot.title = ggplot2::element_text(size = 12)) autoco <- sights::plotSights(plotMethod = "Autoco", plotMatrix = SPAWN.norm.inglese.09, plateRows = 32, plateCols = 40, plotRows = NULL, plotCols = 1:3, plotSep = FALSE) + ggplot2::theme(plot.title = ggplot2::element_text(size = 12)) scatter <- sights::plotSights(plotMethod = "Scatter", plotMatrix = SPAWN.norm.inglese.09, repIndex = c(1,1,1), plotRows = NULL, plotCols = 1:3) sc1 <- scatter[[1]] + ggplot2::theme(plot.title = ggplot2::element_text(size = 12)) sc2 <- scatter[[2]] + ggplot2::theme(plot.title = ggplot2::element_text(size = 12)) sc3 <- scatter[[3]] + ggplot2::theme(plot.title = ggplot2::element_text(size = 12)) sc <- gridExtra::grid.arrange(sc1, sc2, sc3, ncol = 3) ab <- gridExtra::grid.arrange(box, autoco, ncol = 2) ``` ``` {r biases, fig.cap="Arrangement: Multiple plots can be custom-arranged in one window by using gridExtra package [@auguie2015package].", fig.height = 7, fig.width = 7} gridExtra::grid.arrange(ab, sc, nrow = 2, top = "SPAWN Normalized Exp9") ``` ______________________ # References