search for: ccnd1

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

Did you mean: ccna1
2009 Sep 23
1
How to show number in the %f format?
...7e-16 Adcyap1r1 2.085731587e-11 1.998401444e-15 Robo1 0.000000000e+00 0.000000000e+00 Sema3a 4.903322193e-11 0.000000000e+00 Rab9b 1.099629676e-05 1.116694168e-06 Tgfb3 0.000000000e+00 0.000000000e+00 Slc9a9 7.460784795e-03 1.552167950e-09 Creb5 2.959174867e-07 8.973577437e-11 Ccnd1 7.868573521e-04 1.460805570e-07 Pafah1b3 1.576464070e-08 6.757446065e-06 Tiam2 0.000000000e+00 0.000000000e+00 Etv5 2.279731959e-12 0.000000000e+00 Hcrtr2 1.258646520e-10 1.661509722e-05 > str(significant_analysis_results[,7:8]) num [1:20, 1:2] 1.91e-06 2.48e-05 6.31e-08 0.00 8...
2009 Dec 17
2
some help regarding combining columns from different files
Dear all, Here is my code which am using to combine 5th column from different data sets. Here is the function to do my job genesymbol.append.file <-NULL gene.column <- NULL readGeneSymbol <- function(files,genesymbol.column=5){ for(i in fnames){ temp <- read.table(fnames,header=T,sep="\t",stringsAsFactors=F,quote="\"")
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.