Description Usage Arguments Details Value Slots See Also Examples
Creates an object of class amModelLib
, either empty, or containing amModel
and/or amData
objects.
An S4 class to hold model and data, each with descriptive metadata.
1 2 | amModelLib(models = list(), data = list(), info = list(),
description = "")
|
models |
A list of objects of class amModel. |
data |
A list of objects of class amData. |
info |
Named list with descriptive metadata about the |
description |
Text field describing the |
amModelLib
objects are useful for storing multiple models and datasets of a related theme, along with relevant metadata. Most extraction and manipulation functions will attempt to keep any relevant data with any model for which it is used. Multiple models may refer to a single dataset.
An object of class amModelLib.
models
A named list of amModel
objects. Models are added with insertAMModelLib
and removed with rmModel
.
data
A named list of amData
objects. Data are added with insertAMModelLib
and removed with rmData
.
info
A named list of length 1 character strings that forms name:value metadata pairs describing the amModelLib
, e.g. the project, the owner, etc. Name:value pairs may be retrieved or set using ammlInfo
.
description
Length 1 character vector describing the amModelLib
, intended to offer a summary of the amModelLib
and quickly refresh the user to its contents and purpose without poring over the detailed metadata. The description may be retrieved or set with ammlDesc
.
Other amModelLib: AMModels
,
amData
, amModel
,
getters
, grepAMModelLib
,
insertAMModelLib
, lsModels
,
rmModel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | # code from the lm helpfile
## Annette Dobson (1990) "An Introduction to Generalized Linear Models".
## Page 9: Plant Weight Data.
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
group <- gl(2, 10, 20, labels = c("Ctl","Trt"))
weight <- c(ctl, trt)
lm.D9 <- lm(weight ~ group)
lm.D90 <- lm(weight ~ group - 1) # omitting intercept
# create a data.frame of the plant data
plant.data <- data.frame(group = group, weight = weight)
# create an amData object that includes the data.frame and metadata
plant.data <- amData(
data = plant.data,
comment = 'Dataset from lm helpfile.'
)
# create an amModel model object that includes model lm.D9 and metadata
# use the metadata keyword 'data' to link the model with the amData object
# that produced it
plant.model1 <- amModel(
model = lm.D9,
comment = 'Example model produced from from lm helpfile.',
data = 'plant.data'
)
# create a second amModel model object that includes model lm.D90 and metadata
# use the metadata keyword 'data' to soft link the model with its data
plant.model2 <- amModel(
model = lm.D90,
comment = 'Second model produced from from lm helpfile.',
data = 'plant.data'
)
# use the amModelLib function to create a new amModelLib containing the two
# amModel objects and one amData object
mymodels <- amModelLib(
models = list(
plant.model1 = plant.model1,
plant.model2 = plant.model2
),
data = list(
plant.data = plant.data
),
description = "This amModelLib stores models and data from the lm helpfile.",
info = list(
owner = "Me"
)
)
# use the amModelLib function amModelLib to create an empty amModelLib called mymodels2
mymodels2 <- amModelLib(
description = "A second amModelLib called mymodels2.",
info = list(
owner = "Me2"
)
)
# use the insertAMModelLib function to insert the two amModel objects and one
# amData oject to the existing amModelLib
mymodels2 <- insertAMModelLib(
models = list(
plant.model1 = plant.model1,
plant.model2 = plant.model2),
data = list(plant.data = plant.data)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.