print.summary.dosearch {dosearch}R Documentation

Print the Summary of a dosearch Object

Description

Print the Summary of a dosearch Object

Usage

## S3 method for class 'summary.dosearch'
print(x, max_chars = 300L, ...)

Arguments

x

An object of class summary.dosearch.

max_chars

Maximum number of characters of the formula to display. The default is 300.

...

Not used.

Value

x (invisibly)

Examples

data <- "p(x,y,z)"
query <- "p(y|do(x))"
graph <- "
  x -> y
  Z -> x
  z -> y
"
x <- dosearch(data, query, graph)
y <- summary(x)
print(y)


[Package dosearch version 1.0.11 Index]