Learn R Programming

COMBIA (version 1.0.6)

synAntPlot: This function plots the synergy analysis 2D and 3D graphs

Description

This function plots the synergy analysis 2D and 3D graphs

Usage

synAntPlot(processedData, xConcentration, yConcentration, xDrug, yDrug,
  cellLine)

Arguments

processedData

A matrix to plot

xConcentration

X drug concentrations

yConcentration

Y drug concentrations

xDrug

X drug name

yDrug

Y drug name

cellLine

Cell line name

Value

Plot the values

Examples

Run this code
# NOT RUN {
dataFile <- system.file("extdata", "processedData.csv", package="COMBIA")
procData <- read.csv( dataFile, header=FALSE)
xConc <- c(0.00,  0.20, 0.39, 0.78,  1.56,  3.12,  6.25, 12.50, 25.00, 50) 
yConc <- c(128,  64,  32,  16,   8,   4,   2,   0)
xD <- "X_Drug"
yD <- "Y_Drug"
clN <- "myCell"
rslt <- synAntPlot(as.matrix(procData),xConc,yConc, xD, yD, clN)  
# }

Run the code above in your browser using DataLab