I have a one row/column dataframe
that I would like to convert into a value.
df <- data.table(x=c(300))
># x
># 1: 300
I've managed to do it by doing this:
b <- as.list(df)[[1]]
># [1] 300
so that identical(b, 300) == T
Is there a simpler way to achieve this? I understand this is a very simple question but I couldn't find a solution. Help?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…