considering the use of variable labels in sjmisc or sjplot package, i just want to know how can i use the variable labels that i can set with the set_label() command in the sjt.df() command.
This is an example:
library(sjPlot)
library(sjmisc)
data("efc")
sjt.df(efc)
the result is not showing the variable labels, but as you can see:
get_label(efc$c12hour)
[1] "average number of hours of care per week"
The variable labels are there.
Please help. and Thanks.