Description Usage Arguments Details Value Examples
The function provides a mechanism for restricting the metadata.info
object.
1 2 | ## S3 method for class 'metadata.info'
restrict(meta.inf, restr.obj)
|
meta.inf |
the |
restr.obj |
description of the restriction |
It can be provided with:
subset of rows or columns from the result of db.attributes
function
subset of rows or columns from the result of db.tables
function
As a result new metadata.info
object is created matching the filtering criteria
restricted metadata.info
object
1 2 3 4 | db.atts <- db.attributes(meta.inf)
# let's select attributes with more than 100 instances
db.atts.cnt <- db.attributes.counts(meta.inf) %>% dplyr::filter(tablecount>100)
meta.inf.restr <- restrict(meta.inf, db.atts.cnt)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.