Skip to content

Commit 5b17e14

Browse files
committed
Built site for ModelArray@0.1.5: fdf1c09
1 parent f3a5bdb commit 5b17e14

10 files changed

Lines changed: 139 additions & 86 deletions

File tree

llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ If you use ModelArray, please cite:
124124
## All functions
125125

126126
- [`ModelArray()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.md)
127-
: An S4 class to represent element-wise scalar data and statistics.
127+
: Construct a ModelArray object
128128
- [`ModelArray.gam()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.gam.md)
129129
: Run GAM for element-wise data
130130
- [`ModelArray.lm()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.lm.md)

pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ articles:
1212
installations: installations.html
1313
modelling: modelling.html
1414
walkthrough: walkthrough.html
15-
last_built: 2026-03-27T19:32Z
15+
last_built: 2026-03-27T20:23Z
1616
urls:
1717
reference: https://pennlinc.github.io/ModelArray/reference
1818
article: https://pennlinc.github.io/ModelArray/articles

reference/ModelArray-class.html

Lines changed: 97 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/ModelArray-class.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# ModelArray class
2+
3+
An S4 class to represent element-wise scalar data and statistics.
4+
5+
## Slots
6+
7+
- `sources`:
8+
9+
A list of source filenames
10+
11+
- `scalars`:
12+
13+
A list of element-wise scalar matrices
14+
15+
- `results`:
16+
17+
A list of statistical result matrices
18+
19+
- `path`:
20+
21+
Path to the h5 file on disk

reference/ModelArray.html

Lines changed: 9 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/ModelArray.md

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,28 @@
1-
# An S4 class to represent element-wise scalar data and statistics.
1+
# Construct a ModelArray object
22

3-
An S4 class to represent element-wise scalar data and statistics.
4-
5-
Load element-wise data from .h5 file as an ModelArray object
3+
Load element-wise data from an .h5 file as a \`ModelArray\` object.
64

75
## Usage
86

97
``` r
10-
ModelArray(filepath, scalar_types = c("FD"), analysis_names = character(0))
11-
128
ModelArray(filepath, scalar_types = c("FD"), analysis_names = character(0))
139
```
1410

1511
## Arguments
1612

1713
- filepath:
1814

19-
file
15+
Path to an .h5 file
2016

2117
- scalar_types:
2218

23-
expected scalars
19+
Expected scalars
2420

2521
- analysis_names:
2622

27-
the subfolder names for results in .h5 file. If empty (default),
23+
The subfolder names for results in the .h5 file. If empty (default),
2824
results are not read.
2925

3026
## Value
3127

32-
ModelArray object
33-
34-
## Details
35-
36-
: Tips for debugging: if you run into this error: "Error in
37-
h(simpleError(msg, call)) : error in evaluating the argument 'seed' in
38-
selecting a method for function 'DelayedArray': HDF5. Symbol table.
39-
Can't open object." Then please check if you give correct
40-
"scalar_types" - check via rhdf5::h5ls(filename_for_h5)
41-
42-
## Slots
43-
44-
- `sources`:
45-
46-
A list of source filenames
47-
48-
- `scalars`:
49-
50-
A list of element-wise scalar matrix
51-
52-
- `results`:
53-
54-
A list of statistical result matrix
55-
56-
- `path`:
57-
58-
Path to the h5 file on disk
28+
A \`ModelArray\` object

reference/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## All functions
44

55
- [`ModelArray()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.md)
6-
: An S4 class to represent element-wise scalar data and statistics.
6+
: Construct a ModelArray object
77
- [`ModelArray.gam()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.gam.md)
88
: Run GAM for element-wise data
99
- [`ModelArray.lm()`](https://pennlinc.github.io/ModelArray/reference/ModelArray.lm.md)

search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<url><loc>https://pennlinc.github.io/ModelArray/articles/walkthrough.html</loc></url>
1717
<url><loc>https://pennlinc.github.io/ModelArray/authors.html</loc></url>
1818
<url><loc>https://pennlinc.github.io/ModelArray/index.html</loc></url>
19+
<url><loc>https://pennlinc.github.io/ModelArray/reference/ModelArray-class.html</loc></url>
1920
<url><loc>https://pennlinc.github.io/ModelArray/reference/ModelArray.gam.html</loc></url>
2021
<url><loc>https://pennlinc.github.io/ModelArray/reference/ModelArray.html</loc></url>
2122
<url><loc>https://pennlinc.github.io/ModelArray/reference/ModelArray.lm.html</loc></url>

0 commit comments

Comments
 (0)