Hello,
I would like to have a data dictionary with my values labels, is it possible to export them into an excel file?
My base is like that :
And I would like to have a base like that :
Is it possible ?
Thanks !
I would like to have a data dictionary with my values labels, is it possible to export them into an excel file?
My base is like that :
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input float(ethnie genre pays) 1 1 1 2 2 2 1 2 3 1 1 4 3 1 2 2 1 1 end label values ethnie ethnie label def ethnie 1 "Ethnie A", modify label def ethnie 2 "Ethnie B", modify label def ethnie 3 "Ethnie C", modify label values genre genre label def genre 1 "H", modify label def genre 2 "F", modify label values pays pays label def pays 1 "FR", modify label def pays 2 "BE", modify label def pays 3 "US", modify label def pays 4 "UK", modify
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str6 variable float value str8 label "ethnie" 1 "Ethnie A" "ethnie" 2 "Ethnie B" "ethnie" 3 "Ethnie C" "genre" 1 "H" "genre" 2 "F" "pays" 1 "FR" "pays" 2 "BE" "pays" 3 "US" "pays" 4 "UK" end
Thanks !
Comment