Print the Fox
object in two ways. By default, the results
are shown in the R console. The results can also be exported to the directory
into a *.txt file.
# S3 method for Fox print(x, export = FALSE, file.name = NULL, digits = 3, ...)
x | The |
---|---|
export | A logical argument. If |
file.name | The name of the file if |
digits | The significant digits to be shown. |
... | Options used by the tibble package to format the output. See
|
Tiago Olivoto tiagoolivoto@gmail.com
#> Variable PH #> --------------------------------------------------------------------------- #> Fox TOP third criteria #> --------------------------------------------------------------------------- #> # A tibble: 13 x 3 #> GEN Y TOP #> <fct> <dbl> <int> #> 1 H1 2.62 2 #> 2 H10 2.31 0 #> 3 H11 2.39 0 #> 4 H12 2.44 1 #> 5 H13 2.54 3 #> 6 H2 2.60 1 #> 7 H3 2.59 2 #> 8 H4 2.58 1 #> 9 H5 2.57 1 #> 10 H6 2.56 0 #> 11 H7 2.40 0 #> 12 H8 2.33 0 #> 13 H9 2.36 1 #> #> #># }