다음과 같이 xmlAttrs에서 반환 된 명명 된 문자 벡터가 있습니다.
testVect <- structure(c("11.2.0.3.0", "12.89", "12.71"), .Names = c("db_version",
"elapsed_time", "cpu_time"))
다음과 같은 데이터 프레임으로 변환하고 싶습니다.
testDF <- data.frame("db_version"="11.2.0.3.0","elapsed_time"=12.89,"cpu_time"=12.71)
head(testDF)
db_version elapsed_time cpu_time
1 11.2.0.3.0 12.89 12.71
data_frame(as.list(testVect))
. 5 행 데이터 프레임을 반환합니다.