iteratelist(whisker)
iteratelist()所属R语言包:whisker
Create an iteration list from a R object
从R对象创建一个迭代列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
In some case it is useful to iterate over a named list or vector iteratelist will create a new unnamed list with key value members: each item will be a list where 'key' is the corresponding name and 'value' is the original value in list x.
在某些情况下是非常有用的遍历一个名为list或vectoriteratelist将创建一个新的未命名list键的值成员:每个项目都会是一个列表“关键的是相应的名称和价值是原始值列表中的x。
用法----------Usage----------
iteratelist(x, name = "name", value = "value")
参数----------Arguments----------
参数:x
list or other object that will be coerced to list
list或其他对象,将被强制转换为list
参数:name
character name for resulting name member.
character导致名成员的名称。
参数:value
character name for resulting value member.
character得到的值成员的名称。
值----------Value----------
unnamed list with name value lists
不愿透露姓名listname的值列表
实例----------Examples----------
# create an iteration list from a named vector[从命名矢量创建一个迭代列表]
x <- c(a=1, b=2)
iteratelist(x)
# iterate over the members of a list[遍历列表中的成员]
x <- list(name="John", age="30", gender="male")
iteratelist(x, name="variable")
# iterate over an unnamed vector[一位不愿透露姓名的矢量迭代]
values <- c(1,2,3,4)
template <-
'{{#values}}[值}}]
* Value: {{.}}
{{/values}}'
whisker.render(template)
#or [或]
values <- iteratelist(values, value="count")
template <-
'{{#values}}[值}}]
* Value: {{count}}
{{/values}}'
whisker.render(template)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|