I have a data frame in R:
   > tempT
       Var1 Freq
    1  10397 1168
    2  13487  965
I want to get the column beginning with 10397. However, for some reason, when I type:
as.numeric(unlist(tempT["Var1"]))
, it gives me
[1]  1  2
Anyone know why it's doing that? Or how I would go about getting the column I want?
 
    