Nothing
## ---- include = FALSE---------------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
library(knitr)
## ----setup--------------------------------------------------------------------
library(ontologics)
library(dplyr, warn.conflicts = FALSE)
## ----concept matches----------------------------------------------------------
# already existing ontology for some project about crops
crops <- load_ontology(path = system.file("extdata", "crops.rds", package = "ontologics"))
# where we have to set the external dataset as new source
crops <- new_source(name = "externalDataset",
version = "0.0.1",
description = "a vocabulary",
homepage = "https://www.something.net",
license = "CC-BY-4.0",
ontology = crops)
# new concepts that occur in the external dataset, which should be harmonised with the ontology
externalConcepts <- c("Wheat", "NUTS", "Avocado")
## ----get_concepts missing-----------------------------------------------------
missingConcepts <- get_concept(label = externalConcepts, ontology = crops)
missingConcepts %>%
select(1:5) %>%
kable()
## ----set_concept--------------------------------------------------------------
broaderConcepts <- get_concept(label = c("Wheat", "Tropical and subtropical Fruit"),
ontology = crops)
crops <- new_concept(new = c("wheat", "avocado"),
broader = broaderConcepts,
class = "crop",
ontology = crops)
## ----set_mapping--------------------------------------------------------------
toMap <- get_concept(label = c("wheat", "NUTS", "avocado"),
ontology = crops)
crops <- new_mapping(new = externalConcepts,
target = toMap,
match = c("close", "close", "close"),
source = "externalDataset",
certainty = 3,
ontology = crops)
## -----------------------------------------------------------------------------
broaderConcepts <- get_concept(label = c("wheat", "wheat"),
ontology = crops)
# for (some of) these concepts we do not know the class ...
crops <- new_concept(new = c("wheat1", "wheat2"),
broader = broaderConcepts,
class = NA_character_,
ontology = crops)
make_tree(label = "Wheat", ontology = crops) %>%
select(1:5) %>%
kable()
# ... ok, then let's specify that class and re-run new_concept
crops <- new_class(new = "cultivar", target = "crop",
description = "type of plant that people have bred for desired traits",
ontology = crops)
crops <- new_concept(new = c("wheat1", "wheat2"),
broader = broaderConcepts,
class = "cultivar",
ontology = crops)
## ----new ontology-------------------------------------------------------------
make_tree(label = "Wheat", ontology = crops) %>%
select(1:5) %>%
kable()
make_tree(label = "NUTS", ontology = crops) %>%
select(1:5) %>%
kable()
make_tree(label = "FRUIT", ontology = crops) %>%
select(1:5) %>%
kable()
# and finally a list of all external concepts
get_concept(external = TRUE, ontology = crops) %>%
kable()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.