Skip to content

Commit 82a6e3e

Browse files
committed
fix spelling and missing parameter docs
1 parent 7d850a7 commit 82a6e3e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

R/lowerTblData.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#' @param tbls A named list of data frames representing the tables.
1212
#' @param level A character string specifying the name of the target lower level table.
1313
#' @param verbose A logical value indicating whether to print intermediate levels during recursion.
14+
#' @param path_order Internal: character vector tracking the traversal path of IDs during
15+
#' recursion to preserve a stable column order in the returned result. Users should not
16+
#' normally set this; it is maintained by recursive calls (default NULL).
1417
#'
1518
#' @return A data frame containing the rows of the target lower level table that are associated with
1619
#' the given values of the upper table field.

package_overview.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The aim of this document is to outline the basic workflow of importing data down
1919

2020
The function **createRDBESDataObject** is intended to directly import Commercial Landing (CL), Commercial Effort (CE) and Commercial Sampling (CS) tables downloaded from [RDBES](https://rdbes.ices.dk/#/).
2121

22-
## Introducton
22+
## Introduction
2323
2
2424
RDBEScore is an R package developed to facilitate the analysis of data from the ICES Regional Database and Estimation System (RDBES). The package provides functions to:
2525

vignettes/v01b-manipulating-rdbesdataobjects.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ validateRDBESDataObject(myFilteredObjectNoOrphans, verbose = FALSE)
153153
154154
myFilteredObjectNoOrphans
155155
```
156-
**NB!** Currently filtering happens to all fields together i.e it is not possible to filter same codelist differently in the same filter call. Imagine a situation where you want to filter on both "SDCtry" and "VDflgCtry" ie vessels from EH country sampled by ZW institution. Ie tow calls are needed
156+
**NB!** Currently filtering happens to all fields together i.e it is not possible to filter same codelist differently in the same filter call. Imagine a situation where you want to filter on both "SDCtry" and "VDflgCtry" ie vessels from EH country sampled by ZW institution. Ie two calls are needed
157157

158158
```{r}
159159
myFilteredObject <- filterRDBESDataObject(myH1RawObject,
@@ -169,7 +169,7 @@ filterRDBESDataObject(myFilteredObject,
169169
170170
```
171171

172-
Sometimes you might to do the inverse filter eg exclude something. You can do this by selecting the complement set of values using `setdiff`.
172+
Sometimes you might want to do the inverse filter eg exclude something. You can do this by selecting the complement set of values using `setdiff`.
173173

174174
```{r}
175175
# Exclude specific DEid values by selecting all others

0 commit comments

Comments
 (0)