Description Usage Arguments Value Author(s) See Also Examples
View source: R/ObservedCellProfiles.R
This function visualizes the observed Cell line specific profiles for a given peptide of the PamChip microarray data.
1 2 | ObservedCellProfiles(pepname,DataMat,
Trt.Group=c("Treatment","Control"),Res,log.true=FALSE)
|
pepname |
Name of the peptide to be used in visualization. |
DataMat |
A data frame of PamChip. |
Trt.Group |
Treatment group for which visualization is required. Default is for both "Treatment" and "Control" groups. |
Res |
Indicator for Responsive (R) or non-responsive (NR) group. |
log.true |
Default |
none
Pushpike Thilakarathne, Ziv Shkedy and Dan Lin
ObservedRepProfiles
, ObservedGroupProfiles
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #--------
for (i in 1:148) {
par(ask=TRUE)
ObservedCellProfiles(pepname=paste("Pep",i,sep=""),DataMat=PamChipData,
Trt.Group=c("Treatment","Control"),Res=c("R","NR"),log.true=FALSE)
cat(i)
}
ObservedCellProfiles(pepname="Pep58",DataMat=PamChipData,
Trt.Group=c("Treatment","Control"),Res=c("R","NR"),log.true=FALSE)
ObservedCellProfiles(pepname="Pep9",DataMat=PamChipData,
Trt.Group=c("Treatment","Control"),Res=c("R","NR"),log.true=FALSE)
#------------log2 transformed -----------------------------
ObservedCellProfiles(pepname="Pep9",DataMat=PamChipData,
Trt.Group=c("Treatment","Control"),Res=c("R","NR"),log.true=TRUE)
ObservedCellProfiles(pepname="Pep26",DataMat=PamChipData,
Trt.Group=c("Treatment","Control"),Res=c("R","NR"),log.true=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.