powered by
These functions construct or copy labels onto an existing matrix or dataframe.
as.tabular(x, like = NULL) # S3 method for default as.tabular(x, like = NULL) # S3 method for data.frame as.tabular(x, like = NULL)
A tabular object.
tabular
The object to convert.
If not NULL, should be a tabular object with the same number of rows and columns as x. Its labels will be used on the result.
NULL
x
as.matrix.tabular
model <- tabular( (Species + 1) ~ (n=1) + Sepal.Length + Sepal.Width, data=iris ) model as.tabular(matrix(1:12, 4,3), like=model)
Run the code above in your browser using DataLab