The data is a single variable 'x' defined directly within the Data step.
1 Code Block
DATA STEP
Explanation : Writing formatted values to the log. The segments ' @code_sas_json/...' are artifacts probably replacing column positions (e.g., @code_sas_json_prod_multi/Daniel Langer WHICHC - SE - 20240508_de.json, @code_sas_json_prod_multi/Daniel Langer WHICHC - SE - 20240508_de.json) to align the output. The code uses NLMNL (National Language Monetary Local) and NLMNI (National Language Monetary International) formats followed by the ISO currency code.
Copied!
DATA _NULL_;
x = 1234.56;
PUT 'UK - ' @code_sas_json/m205e01.json x NLMNLGBP. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIGBP.
/ 'Japan - ' @code_sas_json/m205e01.json x NLMNLJPY. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIJPY.
/ 'Australia - ' @code_sas_json/m205e01.json x NLMNLAUD. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIAUD.
/ 'Euro - ' @code_sas_json/m205e01.json x NLMNLEUR. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIEUR.
/ 'New Zealand - ' @code_sas_json/m205e01.json x NLMNLNZD. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNINZD. ;
RUN;
1
DATA _NULL_;
2
x = 1234.56;
3
PUT 'UK - ' @code_sas_json/m205e01.json x NLMNLGBP. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIGBP.
4
/ 'Japan - ' @code_sas_json/m205e01.json x NLMNLJPY. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIJPY.
5
/ 'Australia - ' @code_sas_json/m205e01.json x NLMNLAUD. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIAUD.
6
/ 'Euro - ' @code_sas_json/m205e01.json x NLMNLEUR. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNIEUR.
7
/ 'New Zealand - ' @code_sas_json/m205e01.json x NLMNLNZD. @code_sas_json_prod_multi/40 Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json Program_9_4 Ratio Estimation -- Large Cities in the USA in 1920 and 1930_de.json x NLMNINZD. ;
8
RUN;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.