summary.nplr {nplr}R Documentation

summaryzing nplr Objects

Description

A S3 method to visualize a model summary as a table.

Usage

  ## S3 method for class 'nplr'
summary(object, ...)

Arguments

object

: an object of class nplr

...

: other optional parameters (not used).

Details

None

Note

The data used in the examples are samples from the NCI-60 Growth Inhibition Data:
https://wiki.nci.nih.gov/display/NCIDTPdata/NCI-60+Growth+Inhibition+Data, except for multicell.tsv which are simulated data.

Source

None

References

None

See Also

plot.nplr

Examples

# Using the PC-3 data
require(nplr)
path <- system.file("extdata", "pc3.txt", package = "nplr")
pc3 <- read.delim(path)
model <- nplr(x = pc3$CONC, y = pc3$GIPROP)
summary(model)

[Package nplr version 0.1-7 Index]