Description Usage Arguments Examples
View source: R/get_attrs_desc.R
Get an attribute list string from an object
| 1 | get_attrs_desc(object)
 | 
| object | Given object, can be  | 
| 1 2 3 4 5 6 7 8 9 10 11 | print(df)
#   id   name is_manager
# 1  1   Jane      FALSE
# 2  2   John      FALSE
# 3  3   Eric      FALSE
# 4  4 Selena       TRUE
get_attrs_desc(df)
# [1] "id: 1\nname: Jane\nis_manager: FALSE"
# [2] "id: 2\nname: John\nis_manager: FALSE"
# [3] "id: 3\nname: Eric\nis_manager: FALSE"
# [4] "id: 4\nname: Selena\nis_manager: TRUE"
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.