嗨,我刚刚有一个关于使用多个函数编写更快的 R 脚本的快速问题:假设每个示例中的内容完全相同,以下哪个运行得更快?函数中的函数,即
function(args)
{
function_using_previous_function_output(args)
{ manipulation of arguments}
}
相互传递东西的函数:
function(args)
{return(output}
}
function_using_previous_function_output(output)
{
manipulation of arguments
}
这些中是否有样式或优化的最佳实践?
非常感谢!