由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请教一个R的问题(function)
相关主题
【急】一个基本的R的问题,求助。谢谢!大包子答谢R doesnt have pass by reference mechanism?
请教一个R问题:怎么rbind一系列data,如data1,data2,....data (转载)R: how to refer function arguments within function?
再一次请教apply function 在R中的应用[R] How to apply "apply" here?
R question about apply() and outer()请教:如何能加速R codes 运行?
有什么R function 可以推荐?问一个关于R 的问题
Predict values of vectors generated by black box functionsSAS Macro Function
问统计大侠们一个有趣的数学问题为什么有些函数在我的R中无法执行呢?
如何用R处理大文件Vectorization question
相关话题的讨论汇总
话题: function话题: argument话题: 问题话题: vector话题: code
进入Statistics版参与讨论
1 (共1页)
S**********e
发帖数: 1789
1
这个问题是关于function的。
问题的第一步是先用hard code做个图表,然后写个function。
function有3个argument:
Convert the completed code to a function including the code that will plot
the graph.The first argument to the function is to be the name of the vector
containing the adjusted closing prices so that we can analyze data from any
stock without having to rewrite our function.
第一个argument把我难倒了,怎么把vector name写成argument呢? 然后怎么call这个
function呢。找不到相关的例子
请大家指教
谢谢
m******r
发帖数: 1033
2
是不是用那个lapply, 把你的函数放进去 ?
w*******9
发帖数: 1433
3
x <- 1:3. x 这个变量的名字是啥?x 还是"x"? 你给函数要传参数x 还是“x"? 如果
后者的话可能你需要用something like eval(parse(text = paste("y=", "x", sep =
""))) to extract the value of x. Not sure if this is relevant at all -_-
l******n
发帖数: 9344
4
do.call

vector
any

【在 S**********e 的大作中提到】
: 这个问题是关于function的。
: 问题的第一步是先用hard code做个图表,然后写个function。
: function有3个argument:
: Convert the completed code to a function including the code that will plot
: the graph.The first argument to the function is to be the name of the vector
: containing the adjusted closing prices so that we can analyze data from any
: stock without having to rewrite our function.
: 第一个argument把我难倒了,怎么把vector name写成argument呢? 然后怎么call这个
: function呢。找不到相关的例子
: 请大家指教

1 (共1页)
进入Statistics版参与讨论
相关主题
Vectorization question有什么R function 可以推荐?
R 求助Predict values of vectors generated by black box functions
R问题问统计大侠们一个有趣的数学问题
请教一个R的问题如何用R处理大文件
【急】一个基本的R的问题,求助。谢谢!大包子答谢R doesnt have pass by reference mechanism?
请教一个R问题:怎么rbind一系列data,如data1,data2,....data (转载)R: how to refer function arguments within function?
再一次请教apply function 在R中的应用[R] How to apply "apply" here?
R question about apply() and outer()请教:如何能加速R codes 运行?
相关话题的讨论汇总
话题: function话题: argument话题: 问题话题: vector话题: code