R/transform_object.R
df_structure.Rd
Transformation functions for creating reference or result objects for testing progress of the students in their project.
df_structure(object, ...)
digest(object, algo = "md5", ...)
object_attr(object, attrib = "class", ...)
object_part(object, part = "x", ...)
object_str(object, part = "x", ...)
The object to transform
Further arguments (not used for now)
algorithm to use for digest, "md5"
by default
The attribute(s) to record from the object
The part(s) to record from the object (list items)
df_structure()
returns names, attributes "label" and "units",
number of row and columns, classes, if there are missing data and comment in
a data frame. digest()
returns a hash of the object. object_attr()
returns the attribute(s) of the object. object_part()
returns the part(s)
of an object (list items). object_str()
returns a str() representation of
the object parts.