Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Remove 'nomnoml' from Suggests
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrerebeau committed Mar 19, 2020
1 parent cab0a4c commit 34e5e6d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Imports:
Suggests:
covr (>= 3.5.0),
knitr,
nomnoml (>= 0.1.0),
rmarkdown,
testthat (>= 2.3.2)
VignetteBuilder:
Expand Down
13 changes: 0 additions & 13 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,6 @@
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
"identifier": "nomnoml",
"name": "nomnoml",
"version": ">= 0.1.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=nomnoml"
},
{
"@type": "SoftwareApplication",
"identifier": "rmarkdown",
Expand Down
10 changes: 8 additions & 2 deletions vignettes/arkhe.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
library(nomnoml)
```

# Definitions
Expand All @@ -42,7 +41,9 @@ The **arkhe** package provides a set of S4 classes for archaeological data matri

The internal structure of S4 classes implemented in **arkhe** is depicted in the UML class diagram in the following figure.

```{nomnoml uml, echo=FALSE, fig.cap="UML class diagram of the S4 classes structure.", fig.width=7, fig.height=7}
```{r nomnoml, eval=FALSE, echo=FALSE}
# Compile UML diagrams with the 'nomnoml' package
nomnoml::nomnoml("
[base::matrix||]
[Matrix|-id: character;+dates: list;+coordinates: list|]
Expand All @@ -67,6 +68,11 @@ The internal structure of S4 classes implemented in **arkhe** is depicted in the
[Matrix] <:- [LogicalMatrix]
[LogicalMatrix] <:- [IncidenceMatrix]
[LogicalMatrix] <:- [StratigraphicMatrix]
", png = "vignettes/uml-1.png")
```

```{r uml, echo=FALSE, fig.cap="UML class diagram of the S4 classes structure.", fig.width=7, fig.height=7, out.width="100%"}
knitr::include_graphics("uml-1.png", error = TRUE)
```

## Numeric matrix
Expand Down
Binary file added vignettes/uml-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 34e5e6d

Please sign in to comment.