sp (version 0.8-16)

AttributeList-class: Class "AttributeList"

Description

Attribute list; a kind of data.frame but without row.names

Arguments

Objects from the Class

Objects can be created by calls of the form AttributeList(x), with x a list having elements of equal length.

See Also

list, data.frame

Examples

Run this code
x = AttributeList(list(a = 1:10, b = sample(1:10), c = runif(10)))
x
summary(x)
x = object.size(AttributeList(list(a = 1:1000000)))
y = object.size(data.frame(a = 1:1000000))
y / x

Run the code above in your browser using DataCamp Workspace