get_class {ontologics} | R Documentation |
Get class(es) in an ontology
Description
Get class(es) in an ontology
Usage
get_class(..., regex = FALSE, external = FALSE, ontology = NULL)
Arguments
... |
combination of column name and value to filter that column by. The
value to filter by can be provided as regular expression, if |
regex |
|
external |
|
ontology |
|
Value
A table of the class(es) in the ontology according to the values in
...
Examples
ontoDir <- system.file("extdata", "crops.rds", package = "ontologics")
onto <- load_ontology(path = ontoDir)
# exact classes from a loaded ontology ...
get_class(label = "class", ontology = onto)
# ... or one stored on the harddisc
get_class(id = ".xx.xx", ontology = ontoDir)
# use regular expressions ...
get_class(label = "ro", regex = TRUE, ontology = onto)
# get all sources
get_class(ontology = onto)
[Package ontologics version 0.7.0 Index]