格式化变量

发布于 2024-12-14 12:03:56 字数 218 浏览 0 评论 0原文

我有以下格式:

value Agecf 0 = "35-40" 1 = "41-45" 2 = "46-50" 3 = "51-55" 4 = "56-60";

但随后我输入以下内容: formatageagecf.; 我仍然得到所有的观察结果(例如 35,36,37,......),而不是分为 5 个级别的观察结果。为什么?

I have the following format:

value agecf 0 = "35-40" 1 = "41-45" 2 = "46-50" 3 = "51-55" 4 = "56-60";

But then I type the following: format age agecf.; I still get all of the observations (e.g. 35,36,37,.....) instead of the observations grouped into 5 levels. Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清音悠歌 2024-12-21 12:03:56

您只是颠倒了格式的左侧和右侧。格式化的值位于右侧,原始值位于左侧。

下面是一个使用您的格式的示例,这可能是您想要创建的格式。

proc format;
value agecf 0 = "35-40" 1 = "41-45" 2 = "46-50" 3 = "51-55" 4 = "56-60";
value newage 35-40="0" 41-45="1" 46-50="2"  51-55="3" 56-60="4";
run;
data test;
input value1;
value2=value1;
format value1 agecf. value2 newage.; 
datalines;
35
45
50
37
46
55
60
;
proc print data=test;run;

You just reversed the left and right sides of the format. The formatted value goes on the right, the original value on the left.

Below is an example with using your format and one which is probably what you were trying to create.

proc format;
value agecf 0 = "35-40" 1 = "41-45" 2 = "46-50" 3 = "51-55" 4 = "56-60";
value newage 35-40="0" 41-45="1" 46-50="2"  51-55="3" 56-60="4";
run;
data test;
input value1;
value2=value1;
format value1 agecf. value2 newage.; 
datalines;
35
45
50
37
46
55
60
;
proc print data=test;run;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文