我可能有一个基本问题,但这是我第一次真正掌握原子载体。我从状态文件加载数据并放入数据框。看起来像这样:
$ hv202 : atomic 13 13 43 13 13 13 13 13 42 21 ...
..- attr(*, "label")= chr "source of non-drinking water"
..- attr(*, "format.stata")= chr "%8.0g"
..- attr(*, "labels")= Named num 10 11 12 13 20 21 30 31 32 40 ...
.. ..- attr(*, "names")= chr "piped water" "piped into dwelling" "piped to yard/plot" "public tap/standpipe" ...
我希望从中获取标签和名称。这是一个Stata结构,它包含变量的数值,然后是其含义的字符标签。
如何提取值 - attr(,“labels”)部分和 - attr(,“labels”),这样我就可以使用像dplyr的recode这样的工具,或者我只是想知道向量的第i个元素的值和标签吗?