table | R Documentation |
Returns a tabular representation of a relation like a “view” of a relational database table.
relation_table(x, memberships = TRUE)
x |
an object inheriting from class |
memberships |
logical; should membership vector (if any) be added to the table? |
An object of class relation_table
, inheriting from class
data.frame
.
relation_join()
R <- data.frame(Name = c("David", "John"), Age = c(33, 66), stringsAsFactors = FALSE) R <- as.relation(R) relation_table(R)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.