此问题已在此处有答案:
Returning multiple objects in an R function [duplicate](6个答案)
2天前关闭。
是否可以在这样的函数中返回两个 Dataframe :
test <- function(){
my.df <- data.frame(
col1 = sample(c(1,2), 10, replace = TRUE),
col2 = as.factor(sample(10)))
other.df <- data.frame(
col3 = letters[1:10],
col4 = sample(c(TRUE, FALSE), 10, replace = TRUE))
return(my.df, other.df)
}
a,b=test()
1条答案
按热度按时间qv7cva1a1#
返回列表