Different from as.data.frame
Arguments
- model
base::matrixinstance- data
original dataset, if needed
- compat
Logical frag to specify the behaviour when converting matrix which has no column name. If
FALSE, result has character columns like c('1', '2', ...). IfTRUE, result has character columns like c('V1', 'V2', ...).- ...
other arguments passed to methods
Examples
fortify(matrix(1:6, nrow=2, ncol=3))
#> 1 2 3
#> 1 1 3 5
#> 2 2 4 6