Skip to content

Commit

Permalink
refactor: better snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Jul 18, 2024
1 parent 1e28979 commit c046730
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions relation/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,24 @@ In case of asymmetric confidence intervals, use `relation:ConfidenceUpperBound`

```turtle
[
meta:dimensionRelation [
a relation:ConfidenceLowerBound ;
dcterms:type "Confidence interval" ;
meta:relatesTo ex:measurement-dimension ;
],
meta:dimensionRelation [
a relation:ConfidenceUpperBound ;
dcterms:type "Confidence interval" ;
meta:relatesTo ex:measurement-dimension ;
]
sh:property [
sh:path ex:measurement-dimension ;
] ;
sh:property [
sh:path ex:lower-confidence-dimension ;
meta:dimensionRelation [
a relation:ConfidenceLowerBound ;
dcterms:type "Confidence interval" ;
meta:relatesTo ex:measurement-dimension ;
] ;
] ;
sh:property [
sh:path ex:lower-confidence-dimension ;
meta:dimensionRelation [
a relation:ConfidenceUpperBound ;
dcterms:type "Confidence interval" ;
meta:relatesTo ex:measurement-dimension ;
] ;
] ;
] .
```

0 comments on commit c046730

Please sign in to comment.