Print Values

Usage

print(x, ...)

print.factor(x, quote = FALSE)
print.ordered(x, quote = FALSE)

Description

print prints its argument. It is a generic function which means that new printing methods can be easily added for new classes.

The default version of print is described in link{print.default}. Use methods("print") to get all the methods for the print generic.

See Also

The default method print.default, and help for the methods above; further options.

Examples

ts(1:20)#-- print  is the ``Default function'' --> print.ts(.) is called
rr <- for(i in 1:3) print(1:i)
rr


[Package Contents]