Skip to content

Commit

Permalink
restricted examples a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonNowakowski committed Jul 19, 2022
1 parent 1ad062e commit ae43674
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions R/DMRnet.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
#' @examples
#' ## DMRnet for linear regression
#' data(miete)
#' ytr <- miete[1:1500,1]
#' Xtr <- miete[1:1500,-1]
#' Xte <- miete[1501:2053,-1]
#' ytr <- miete[1:500,1]
#' Xtr <- miete[1:500,-1]
#' Xte <- miete[501:1000,-1]
#' m1 <- DMRnet(Xtr, ytr)
#' print(m1)
#' plot(m1)
Expand All @@ -77,9 +77,9 @@
#'
#' ## GLAMER for linear regression
#' data(miete)
#' ytr <- miete[1:1500,1]
#' Xtr <- miete[1:1500,-1]
#' Xte <- miete[1501:2053,-1]
#' ytr <- miete[1:500,1]
#' Xtr <- miete[1:500,-1]
#' Xte <- miete[501:1000,-1]
#' m1 <- DMRnet(Xtr, ytr, algorithm="glamer")
#' print(m1)
#' plot(m1)
Expand Down
12 changes: 6 additions & 6 deletions man/DMRnet.Rd

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

0 comments on commit ae43674

Please sign in to comment.