XML包使用

前端之家收集整理的这篇文章主要介绍了XML包使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近更新请参照 http://cangfengzhe.github.com

htmlParse(url)

解析网页,或XML

xml 转换成data.frame

“`r
library(XML)
library(plyr)
url_path_pre <- ‘http://www.rcsb.org/pdb/rest/describePDB?structureId=4hhb,1hhb
query_txt <- paste(structureId,collapse = ‘,’)
url_path <- paste(c(url_path_pre,query_txt),collapse = ”)
xml_txt <- htmlParse(url_path)
xml_list <- xmlToList(xml_txt)
title <- names(xml_list body pdbdescription pdb)out<ldpl@H_301_94@y(xmllist body$pdbdescription,function(x) {
sapply(title,function(y){
assign(y,x[[y]])
})
} )
out

“`

原文链接:https://www.f2er.com/xml/296610.html

猜你在找的XML相关文章