readProtoFiles(RProtoBuf)
readProtoFiles()所属R语言包:RProtoBuf
protocol buffer descriptor importer
协议缓冲区描述符进口商
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Imports proto files into the descriptor pool that is then used by the P function to resolve message type names.
进口原文件,然后用P功能,以解决信息的类型名称描述符池。
用法----------Usage----------
readProtoFiles(files, dir, package="RProtoBuf", pattern="\\.proto$", lib.loc=NULL)
参数----------Arguments----------
参数:files
Proto files
proto文件
参数:dir
Directory. If files is not specified, files with the "proto" extension in the dir directory are imported
目录。如果files不指定,dir目录的“原始”扩展名的文件被导入
参数:package
R package name. If files and dir are missing, "proto" files in the "proto" directory of the package tree are imported.
R程序包的名称。如果files和dir缺少,“原始”的包树“原”目录中的文件都是进口的。
参数:pattern
A filename pattern to match proto files.
proto文件的文件名模式匹配。
参数:lib.loc
Library location.
图书馆的位置。
值----------Value----------
NULL, invisibly.
NULL,不可见的。
(作者)----------Author(s)----------
Romain Francois <francoisromain@free.fr>
参见----------See Also----------
P
P
实例----------Examples----------
## Not run: [#不运行:]
# from a package[从一个包]
readProtoFiles( package = "RProtoBuf" )
# from a directory[从一个目录]
proto.dir <- system.file( "proto", package = "RProtoBuf" )
readProtoFiles( dir = proto.dir )
# set of files[文件集]
proto.files <- list.files( proto.dir, full.names = TRUE )
readProtoFiles( proto.files )
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|