8

我有一个看起来像这样的数据:

GO:2000974 7,8 negative_regulation_of_pro-B_cell_differentiation Notch1 ISS
GO:2000974 7,8 negative_regulation_of_pro-B_cell_differentiation Q9W737 IEA
GO:0001768 4 establishment_of_T_cell_polarity Ccl19 IEA 
GO:0001768 4 establishment_of_T_cell_polarity Ccl19 ISS 
GO:0001768 4 establishment_of_T_cell_polarity Ccl21 IEA

我想要做的是将第四列的文本大写。因此,例如现在我们有Notch1,然后将其转换为NOTCH1. 在R中做这件事的方法是什么?我坚持这个:

dat<-read.table("http://dpaste.com/1353034/plain/")
4

1 回答 1

12

只需使用以下toupper功能:

R> toupper(c("a", "ab"))
[1] "A"  "AB"

对于您的数据框,您将拥有:

dat[,4] = toupper(dat[,4])
于 2013-08-22T08:15:58.493 回答