Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:

- name: Upload build results
if: contains(matrix.config.flags, 'binaries') && !failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-binaries
path: binaries
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:

- name: Upload check results
if: contains(matrix.config.flags, 'covr') == false && failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: |
Expand Down
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Change Log:
v0.11.6
-changes to the usage statement for the network.extensions.Rd file, which uses the \method{} tag to help R into thinking that the *.active functions are S3 methods.
v0.11.5
- update links to .paj example files and fix some documentation warnings
v0.11.4
Expand Down
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: networkDynamic
Version: 0.11.5
Date: 2024-11-21
Version: 0.11.6
Date: 2026-03-29
Title: Dynamic Extensions for Network Objects
Type: Package
Depends: R (>= 3.0.0), network (>= 1.17.0)
Depends: R (>= 3.0.0), network (>= 1.20.0)
Imports: statnet.common, methods, networkLite
Suggests: testthat
LinkingTo: network
Expand Down
8 changes: 4 additions & 4 deletions man/network.extensions.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
Various core functions from the \link[network]{network} package, with specialized extensions for handling dynamic data.
}
\usage{
get.edgeIDs.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
\method{get.edgeIDs}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
alter = NULL, neighborhood = c("out", "in", "combined"),
rule = c("any", "all", "earliest", "latest"), na.omit = TRUE, active.default = TRUE)
get.edges.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
\method{get.edges}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
alter = NULL, neighborhood = c("out", "in", "combined"),
rule = c("any", "all", "earliest", "latest"), na.omit = TRUE, active.default = TRUE)
get.neighborhood.active(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
\method{get.neighborhood}{active}(x, v, onset = NULL, terminus = NULL, length = NULL, at = NULL,
type = c("out", "in", "combined"), rule = c("any", "all", "earliest", "latest"),
na.omit = TRUE, active.default = TRUE)

is.adjacent.active(x, vi, vj, onset = NULL, terminus = NULL, length = NULL, at = NULL,
\method{is.adjacent}{active}(x, vi, vj, onset = NULL, terminus = NULL, length = NULL, at = NULL,
rule = c("any", "all", "earliest", "latest"), na.omit = FALSE, active.default = TRUE)

\method{network.dyadcount}{active}(x, onset = NULL, terminus = NULL, length = NULL, at = NULL,
Expand Down
Loading