I am still new to R and stuck at some trivial things
If i have data is like this:
"","symbol","len","adjpv"
"1","HLA-DRB4",5.196415406,0.02376069902
"2","SCGB1A1",4.269985245,0.01861663475
I need new data to be set to data but without that first annoying column, "", "1", "2"
any help?
I tried newdata = data$symbol$len$adjpv
and newdata = data[ ,"symbol", "len", adjpv"]
data$symbol works but I need to grab all columns except the first one