|
1 | 1 | Package: struct
|
2 | 2 | Type: Package
|
3 |
| -Title: Statistics in R Using Class Templates |
| 3 | +Title: Statistics in R Using Class-based Templates |
4 | 4 | Version: 0.99.9
|
5 |
| -Author: Gavin Rhys Lloyd and Ralf Weber |
6 |
| -Maintainer: Gavin Rhys Lloyd < [email protected]> |
7 |
| -Description: Defines a set of class templates for developing statistical |
8 |
| - workflows. The templates can be extended to 'wrap' tools from other packages |
9 |
| - into a common structure that allows them to work together more easily. |
10 |
| - Models can be combined into sequences, and sequences nested in iterators |
11 |
| - using overloaded operators to simplify code. A version of the STATO ontology |
12 |
| - is included to provide standardised definitions for methods wrapped using |
13 |
| - the templates. |
| 5 | +Authors@R: c( |
| 6 | + person( |
| 7 | + c("Gavin","Rhys"), |
| 8 | + "Lloyd", |
| 9 | + role=c("aut","cre"), |
| 10 | + |
| 11 | + person( |
| 12 | + c("Ralf","Johannes", "Maria"), |
| 13 | + "Weber", |
| 14 | + role=c("aut"), |
| 15 | + |
| 16 | + ) |
| 17 | +Description: Defines and includes a set of class-based templates for developing |
| 18 | + and implementing data processing and analysis workflows, with a strong |
| 19 | + emphasis on statistics and machine learning. The templates can be used and |
| 20 | + where needed extended to 'wrap' tools and methods from other packages into a |
| 21 | + common standardised structure to allow for effective and fast integration. |
| 22 | + Model objects can be combined into sequences, and sequences nested in |
| 23 | + iterators using overloaded operators to simplify and improve readability of |
| 24 | + the code. STATistics Ontology (STATO) has been integrated and implemented |
| 25 | + to provide standardised definitions for methods, inputs and outputs wrapped |
| 26 | + using the class-based templates. |
14 | 27 | License: GPL-3
|
15 | 28 | Encoding: UTF-8
|
16 | 29 | LazyData: true
|
@@ -44,7 +57,9 @@ Suggests:
|
44 | 57 | rmarkdown,
|
45 | 58 | covr,
|
46 | 59 | BiocStyle,
|
47 |
| - openxlsx |
| 60 | + openxlsx, |
| 61 | + ggplot2, |
| 62 | + magick |
48 | 63 | VignetteBuilder: knitr
|
49 | 64 | Imports: methods, ontologyIndex,
|
50 | 65 | datasets, graphics, stats, utils, knitr,
|
|
0 commit comments