Displaying 1 result from an estimated 1 matches for "tp1590248p1590260".
2010 Mar 12
2
Return one value, print another
Dear R users,
I am stuck trying to figure out how to make a function return one
value and print another.? Here is an example function:
##################
eg <- function(x, digits=4) {
xbar <- mean(x)
sdx <- sd(x)
value <- list(xbar, sdx)
names(value) <- c("Mean of X", "SD of X")
return(value)}
##################
My current "solution" has been to