在学习 R 中有关 XML 的本教程时,我遇到了以下代码:
xml.url <- "http://www.w3schools.com/xml/plant_catalog.xml"
xmlfile <- xmlTreeParse(xml.url)
xmltop <- xmlRoot(xmlfile)
plantcat <- xmlSApply(xmltop, function(x) xmlSApply(x, xmlValue))
我理解前三行,但是对于我的一生,我不理解最后一行。有人可以向我解释吗?为什么有一个函数(x)?