MoTBFs (version 1.2)

is.root: Root nodes

Description

is.root checks whether a node has parents or not.

Usage

is.root(node, dag)

Arguments

node

A character string indicating the node's name.

dag

An object of class "bn".

Value

is.root returns TRUE or FALSE depending on whether the node is root or not.

Examples

Run this code
# NOT RUN {
## Create a dataset
  # Continuous variables
  x <- rnorm(100)
  y <- rnorm(100)
  
  # Discrete variable
  z <- sample(letters[1:2],size = 100, replace = TRUE)
  
  data <- data.frame(C1 = x, C2 = y, D1 = z, stringsAsFactors = FALSE)
  
## Get DAG
  dag <- LearningHC(data)
  
## Check if a node is root
 is.root("C1", dag)
# }

Run the code above in your browser using DataCamp Workspace