We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1863af7 commit 566d2c7Copy full SHA for 566d2c7
By Syntax/FORMAT Procedure/Create User-Defined Formats.sas renamed to By Syntax/FORMAT Procedure/1_Create User-Defined Formats.sas
@@ -54,24 +54,20 @@ proc format;
54
5001-7500 = "Heavyweight Vehicles"
55
7501-high = "Super Heavy-Duty Vehicles"
56
;
57
-
58
run;
59
60
61
data cars_formatted; /*2*/
62
set sashelp.cars;
63
keep Model MSRP EngineSize MPG_Highway Weight Cylinders;
64
- format Cylinders cyl. EngineSize esize. MPG_Highway mpg. MSRP msrp. Weight weight.;
65
+ format Cylinders cyl. EngineSize esize. MPG_Highway mpg. MSRP msrp. Weight weight.;
66
67
68
69
proc catalog cat=work.formats; /*3*/
70
contents;
71
72
73
74
75
proc format lib=work fmtlib; /*4*/
76
77
0 commit comments