getRawStructure: Get Raw Structure (generic)

Description Usage Arguments Author(s) References See Also Examples

Description

Retrieves the structural components of an object in a raw form.

Usage

1

Arguments

...

Further arguments to be passed to subsequent functions/methods.

main

Signature argument. Object whose structure should be retrieved.

Author(s)

Janko Thyson janko.thyson@rappster.de

References

http://github.com/rappster/listr

See Also

getRawStructure-list-method

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
## Not run: 

input <- list(
  x1 = list(x11 = list(x111 = 1, x112 = 1), x12 = list(x121 = 1, x122 = 1)),
  x2 = list(x21 = "x21"),
  x3 = list("x31"),
  x4 = "x4",
  x5 = list(1:3),
  list(list(1, 2), list(3, 4)),
  list(1:3),
  "char 1",
  "char 2",
  letters[1:3],
  c(1,3,5),
  TRUE,
  new.env(),
  data.frame(x = 1:3, y = 1:3)
)
getRawStructure(input)


## End(Not run)

rappster/listr documentation built on May 26, 2019, 11:21 p.m.