search for: esr1

Displaying 3 results from an estimated 3 matches for "esr1".

Did you mean: err1
2007 Jun 06
2
Multiple color schemes for barchart (lattice)
Hello R-help. I am trying to make a stacked barplot where the color of the sections of each bar depend on another variable. > myData[1:11,] score percent marker cellType Malignant 1 0 100.00000 ESR1 (ER) Bladder.M(5) TRUE 2 0 80.00000 PAX8 Bladder.M(5) TRUE 3 1 20.00000 PAX8 Bladder.M(5) TRUE 4 0 100.00000 ESR1 (ER) Brain.N(3) FALSE 5 0 100.00000 PAX8 Brain.N(3) FALSE 6 3 100.00000 ESR1 (ER) Breast.M(11) TRUE 7 0 100.00000 PAX8 Breast.M(1...
2006 Sep 02
0
venn diagrams
...3, 6, 8, 1, 4, 5, 9, 10, 21, 11, 13, 12, 22, 14, 15, 16, 18, 19, 2, 7), .Label = c("ABCC4-2013", "AGR2-0519", "AMACR-2094", "ANGPT1-1031", "ANGPT1-1032", "CLDN8-0345", "CLU-0196", "ENTPD5-0872", "ESR1-1003", "GDEP-0199", "GRIK1-0319", "KLK3-0207", "KRT15-1333", "KRT15-1334", "MYO6-0041", "NELL2-0805", "PCP4-0394", "PLA2G2A-1380", "PLA2G2A-1382", "PTGS2-1271", &quot...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.