seqLog(smatr)
seqLog()所属R语言包:smatr
Sequence Generation
序列生成
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generate multiplicative sequences, or series.
生成乘法序列,或系列。
用法----------Usage----------
seqLog(from, to, base = 10)
参数----------Arguments----------
参数:from,to
the starting and (maximal) end value of a sequence.
在序列的起始和结束值(最大)。
参数:base
multiplication value.
乘法值。
Details
详细信息----------Details----------
Starting at from, seq multiplies successively by base until the maximal value is reached. This is useful for generating tick-spacing on log-transformed axes.
起from,seq乘以先后通过base直到达到的最大值。这是非常有用的产生刻度线数转换的轴间距。
参见----------See Also----------
nicePlot, makeLogMinor
nicePlot,makeLogMinor
实例----------Examples----------
#Sequence suitable for log base 10 labels[序列适用于对数的底数10个标签]
seqLog(1E-5, 1E5)
#Sequence suitable for log base 2 labels[序列合适的log碱基2个标签]
seqLog(2, 128,base=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|