Description Usage Arguments Value Author(s) Examples
Function to create a report for a set of fitted models, passing it to the console as well as to a file, if specified.
1 2 |
kinobject |
A list containing the following elements:
The name of the parent compound to be output ( |
file |
The name of the file to which to write. |
data |
Boolean specifying if the input data should be printed? |
R2 |
Boolean specifying if the coefficient of determination R2 should be printed. R2 is calculated from all values (not mean values) as 1 - RSS/TSS where RSS is the sum of squares of residuals, and TSS ist the total sum of squares, i.e. the sum of squares of the difference of each observation from the overall mean. |
vcov |
Should the variance-covariance matrix/matrices be reported? |
endpoint.digits |
How many digits should be reported for DT50 and DT90 values? |
The function is called for its side effect, namely the report being passed to the R console as well as to a text file if a filename is specified.
Johannes Ranke
1 2 3 4 5 6 7 8 9 10 11 | data(FOCUS_2006_A)
kinfits <- kinfit(FOCUS_2006_A)
kinobject <- list(
parent = "Compound XY",
type = "Degradation in the environment",
system = "System 1",
data = FOCUS_2006_A,
source = "Synthetic example data from FOCUS kinetics",
fits = kinfits,
results = kinresults(kinfits))
kinreport(kinobject)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.