sparql.remote(rrdf)
sparql.remote()所属R语言包:rrdf
Run a SPARQL query on a remote SPARQL end point.
运行SPARQL一个远程SPARQL终点的查询。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Runs a query against a SPARQL end point.
运行一个查询的SPARQL结束点。
用法----------Usage----------
sparql.remote(endpoint, sparql, rowvarname, user, password, jena)
参数----------Arguments----------
参数:endpoint
The SPARQL end point.
的SPARQL终点。
参数:sparql
The SPARQL query.
SPARQL查询。
参数:rowvarname
Optional SPARQL variable name (without the ?) for which the values will be used as row names of the result matrix.
可选的SPARQL变量名称(不含),该值将被用于作为结果矩阵的行名。
参数:user
Optional user name for HTTP authentication.
可选的HTTP认证的用户名。
参数:password
Optional password for HTTP authentication.
HTTP身份验证的密码(可选)。
参数:jena
Boolean to indicate if Jena should be used for the remote SPARQL querying, or Apache's HttpClient.
布尔值,表示如果耶拿应该用于远程SPARQL查询,或Apache的HttpClient的。
值----------Value----------
A matrix object containing the results of the query.
矩阵对象,其中包含的查询结果。
(作者)----------Author(s)----------
Egon Willighagen
实例----------Examples----------
sparql.remote("http://rdf.farmbio.uu.se/chembl/sparql",
paste(
"SELECT DISTINCT ?instance",
"WHERE { ?instance a <http://purl.org/ontology/bibo/Article> }",
"LIMIT 5"
)
)
# with authentication[与认证]
sparql.remote("http://rdf.farmbio.uu.se/chembl/sparql",
paste(
"SELECT DISTINCT ?predicate",
"WHERE { [] ?predicate [] }"
),
user="user", password="password"
)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|