Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable roxygen comments processing for unavailable methods #342

Merged
merged 2 commits into from
Nov 27, 2018
Merged
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
2 changes: 2 additions & 0 deletions r-package/grf/R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#' If it is a non-leaf node: show its splitting variable and splitting value
#' @param tree the tree to convert
#' @param index the index of the current node
#' @keyword internal
create_dot_body <- function(tree, index=1) {

node <- tree$nodes[[index]]
Expand Down Expand Up @@ -61,6 +62,7 @@ create_dot_body <- function(tree, index=1) {
#' This function generates a GraphViz representation of the tree,
#' which is then written into `dot_string`.
#' @param tree the tree to convert
#' @keyword internal
export_graphviz <- function(tree){
header <- "digraph nodes { \n node [shape=box] ;"
footer <- "}"
Expand Down