Skip to content

Commit

Permalink
build: remove exports to WIP methods
Browse files Browse the repository at this point in the history
  • Loading branch information
shawntz committed Aug 30, 2024
1 parent 41c1697 commit e35c2dc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 26 deletions.
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Generated by roxygen2: do not edit by hand

S3method(plot,eyeris)
export(baseline)
export(bidsify)
export(deblink)
export(despeed)
Expand All @@ -10,5 +9,4 @@ export(epoch)
export(interpolate)
export(load)
export(lpfilt)
export(pca)
export(zscore)
9 changes: 3 additions & 6 deletions R/baseline.R
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#' The length of a string
#'
#' Subtractive / divisive baselining of pupil data
#'

Check warning on line 2 in R/baseline.R

View workflow job for this annotation

GitHub Actions / lint

file=R/baseline.R,line=2,col=3,[trailing_whitespace_linter] Trailing whitespace is superfluous.
#' todo: description goes here...
#'
#' @param eyeris An object of class `eyeris` dervived from [eyeris::load()].
#'
#' @return A numeric vector giving number of characters (code points) in each
#' element of the character vector. Missing string have missing length.
#' @export
#' @examples
#' str_length(letters)
baseline <- function(eyeris, extend = 0) {
baseline <- function(eyeris) {
## TODO
}

Check warning on line 11 in R/baseline.R

View workflow job for this annotation

GitHub Actions / lint

file=R/baseline.R,line=11,col=2,[trailing_blank_lines_linter] Missing terminal newline.
7 changes: 2 additions & 5 deletions R/pca.R → R/tpca.R
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#' The length of a string
#' Temporal PCA
#'
#' todo: description goes here...
#'
#' @param eyeris An object of class `eyeris` dervived from [eyeris::load()].
#'
#' @return A numeric vector giving number of characters (code points) in each
#' element of the character vector. Missing string have missing length.
#' @export
#' @examples
#' str_length(letters)
pca <- function(eyeris) {
tpca <- function(eyeris) {
## TODO
}
7 changes: 2 additions & 5 deletions man/baseline.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 5 additions & 8 deletions man/pca.Rd → man/tpca.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e35c2dc

Please sign in to comment.