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呢。找不到相关的例子 : 请大家指教
|