99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀R語言XML格式數(shù)據(jù)導(dǎo)入與處理
R語言XML格式數(shù)據(jù)導(dǎo)入與處理
2017-01-25
收藏

R語言XML格式數(shù)據(jù)導(dǎo)入與處理

數(shù)據(jù)解析

XML是一種可擴(kuò)展標(biāo)記語言,它被設(shè)計(jì)用來傳輸和存儲數(shù)據(jù)。XML是各種應(yīng)用程序之間進(jìn)行數(shù)據(jù)傳輸?shù)淖畛S玫墓ぞ?。它與Access,Oracle和SQL Server等數(shù)據(jù)庫不同,數(shù)據(jù)庫提供了更強(qiáng)有力的數(shù)據(jù)存儲和分析能力,例如:數(shù)據(jù)索引、排序、查找、相關(guān)一致性等,它僅僅是存儲數(shù)據(jù)。事實(shí)上它與其他數(shù)據(jù)表現(xiàn)形式最大的不同是:它極其簡單,這是一個看上去有點(diǎn)瑣細(xì)的優(yōu)點(diǎn),但正是這點(diǎn)使它與眾不同。
針對XML格式數(shù)據(jù),R語言XML包可以對其進(jìn)行數(shù)據(jù)導(dǎo)入與處理,詳見下面的案例說明。

案例1

直接輸入一段標(biāo)記語言文本,使用XML包解析。

library(XML)

tt =
  '<x>
<a>text</a>
<b foo="1"/>
<c bar="me">
<d>a phrase</d>
</c>
</x>'
doc = xmlParse(tt)
xmlToList(doc)
# use an R-level node representation
doc = xmlTreeParse(tt)
xmlToList(doc)
案例2
導(dǎo)入已有的xml格式數(shù)據(jù)并處理,本案例用到的是手機(jī)通訊錄xml數(shù)據(jù),按如下步驟操作:

#讀取xml格式數(shù)據(jù)并解析
xmlfile=xmlParse(file.choose(),encoding="UTF-8")
class(xmlfile)

#形成根目錄列表數(shù)據(jù)
xmltop = xmlRoot(xmlfile)
class(xmltop) #查看類
xmlName(xmltop) #查看根目錄名
xmlSize(xmltop) #查看根目錄總數(shù)
xmlName(xmltop[[1]]) #查看子目錄名

# 查看第一個子目錄
xmltop[[1]]
# 查看第二個子目錄
xmltop[[2]]

#子目錄節(jié)點(diǎn)
xmlSize(xmltop[[1]]) #子目錄節(jié)點(diǎn)數(shù)
xmlSApply(xmltop[[1]], xmlName) #子目錄節(jié)點(diǎn)名
xmlSApply(xmltop[[1]], xmlAttrs) #子目錄節(jié)點(diǎn)屬性
xmlSApply(xmltop[[1]], xmlSize) #子目錄節(jié)點(diǎn)大小

#查看第一個子目錄的第一個節(jié)點(diǎn)
xmltop[[1]][[1]]
#查看第一個子目錄的第二個節(jié)點(diǎn)
xmltop[[1]][[2]]

#第二個子目錄
xmltop[[2]][[1]]
xmltop[[2]][[2]]

xmltop[[1]][[3]][[1]][[1]] #查看聯(lián)系人電話
xmltop[['Contact']][['PhoneList']][[1]][[1]]  #第二種方式
getNodeSet(xmltop, "http://Contact/PhoneList")[[1]][[1]][[1]] #第三種方式

xmltop[[1]][[3]][[1]][[1]] = 13717232323 #更改聯(lián)系人電話
xmltop[[1]][[1]][[1]]= "zhangsan "#更改聯(lián)系人姓名

#保存
saveXML(xmltop, file="out.xml",encoding="UTF-8")
xml格式轉(zhuǎn)dataframe

按如下步驟操作:

xmlToDataFrame(xmlfile) #第一種方式,直接用xmlToDataFrame()函數(shù)

library("plyr") #第二種方式,數(shù)據(jù)格式處理專用包plyr

MyContact=ldply(xmlToList(file.choose()), data.frame) #先轉(zhuǎn)成list,再轉(zhuǎn)dataframe
View(MyContact)

# 查看聯(lián)系方式
MyContact[,c("Name" ,"PhoneList.Phone.text")]

# 聯(lián)系方式保存
write.csv(MyContact, "MyContact.csv", row.names=FALSE)

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗(yàn)證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }