header = T ) # 看一下数据 head(GPL570) head(GPL14877) library(hgu133plus2.db) ids=toTable(hgu133plus2SYMBOL) head(ids) #head为查看前六行 table(GPL14877$Probe.Set.Name %in% GPL570$probe_id) table(GPL14877$Probe.Set.Name %in% ids$probe_id) table(GPL570$probe_id %in% ids$probe_...
acc=GPL14877 找到如下信息: 代码语言:javascript 代码运行次数:0 运行 AI代码解释 GPL14877<-read.table("GPL14877_HGU133Plus2_Hs_ENTREZG_probe_tab.txt.gz",sep="\t",header=T)# 看一下数据head(GPL570)head(GPL14877)library(hgu133plus2.db)ids=toTable(hgu133plus2SYMBOL)head(ids)#head为查看前...
GPL14877 <-read.table("GPL14877_HGU133Plus2_Hs_ENTREZG_probe_tab.txt.gz",sep ="\t",header =T)# 看一下数据head(GPL570) head(GPL14877)library(hgu133plus2.db) ids=toTable(hgu133plus2SYMBOL) head(ids)#head为查看前六行table(GPL14877$Probe.Set.Name %in% GPL570$probe_id) table(GPL14...
acc=GPL14877 但是,我在在利用hgu133plus2.db进行探针名转换为基因名时出现问题 ,代码如下: library(hgu133plus2.db) ids=toTable(hgu133plus2SYMBOL)#toTable这个函数:通过看hgu133plus2.db这个包的说明书知道提取probe_id(探针名)和symbol(基因名)的对应关系的表达矩阵的函数为toTable head(ids)#head为查看...