rtapeFilter(rtape)
rtapeFilter()所属R语言包:rtape
Rerecord the tape dropping certain objects.
重新录制的磁带删除特定的对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Rerecord the tape dropping certain objects.
重新录制的磁带删除特定的对象。
用法----------Usage----------
fileFormatOut=guessFileFormat(fNameOut))
参数----------Arguments----------
参数:FUN
Callback function which gets the current object and returns a boolean value that directs rtape to either keep (for TRUE) or discard it.
获取当前对象的回调函数,并返回一个布尔值,指示rtape(TRUE)保留或放弃。
参数:fNamesIn
Name of the tape file to read; if this argument is a vector of several names, function behaves as reading a single tape made of all those tapes joined in a given order.
读取的磁带文件的名称,如果这一论点的几个名字是一个向量,函数的行为就像在一个给定的顺序加入所有这些磁带读取一个带。
参数:fNameOut
Name of the tape to which store the output of filtering; if this file is one of the input files, this file is overwritten with the output; otherwise the output is appended to this tape. This must be a one-element vector.
存储的输出滤波,如果这个文件是一个输入文件,该文件将被覆盖,否则输出的输出被附加到这个磁带的磁带机名称。这必须是一个元素的矢量。
参数:moreArgs
Additional arguments to FUN, given as a list.
其他参数FUN,作为一个列表。
参数:fileFormatOut
File format; should be left default. See guessFileFormat and makeFileFormat for details.
文件格式应该是左默认。 guessFileFormat和makeFileFormat的详细信息。
Details
详细信息----------Details----------
This function reads the objects from one tape, executes a callback function on them and leaves/appends to the other tape only those for which callback returned TRUE.
这个函数读取对象从一盘磁带,执行一个回调函数,叶/只追加到其他磁带回调返回TRUE。
注意----------Note----------
Overwriting is NOT realised in place, rather by a creation of a temporary file and then using it to overwrite the filtered tape.
覆盖的地方,而没有实现的创建一个临时文件,然后用它来覆盖过滤的磁带。
(作者)----------Author(s)----------
Miron B. Kursa <a href="mailto:M.Kursa@icm.edu.pl">M.Kursa@icm.edu.pl</a>
实例----------Examples----------
#Record something[记录的东西]
for(i in 1:10) rtapeAdd('tmp.tape',i)
#Discard even numbers[丢弃偶数]
rtapeFilter(function(x) (x%%2)==1,'tmp.tape')
#Check it out[检查出来]
unlist(rtapeAsList('tmp.tape'))->A
print(A);
stopifnot(all(A==c(1,3,5,7,9)))
#Time to clean up[时间清理]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|