# \donttest{
library(metan)
model <- waas(data,
resp = c(GY, HM),
gen = GEN,
env = ENV,
rep = REP
)
print(model, n = Inf)
# You can also use a pipe to print the object
# without storing it anywhere
waas(data,
resp = c(GY, HM),
gen = GEN,
env = ENV,
rep = REP
) |> print(n = Inf)
# }
1条答案
按热度按时间qv7cva1a1#
您需要在函数的 Dataframe 输出上使用
print()
,并将n
设置为您想要查看的行数。如果要打印所有行,请设置n = Inf
: