SAS - 查找列中的值并在 Excel 导出中显示该值

发布于 2024-12-08 17:34:48 字数 130 浏览 0 评论 0原文

我基本上尝试这样做:

我在数据集上运行频率查询,它将在 Excel 中输出结果。

我还想在输出中添加一列,其中的值将基于特定单元格或特定列中列出的内容。

我该怎么办呢? (*非常新的 sas 用户)

I am trying to basically do this :

I have a frequency query running on a data set which will output the result in excel.

I also want to add a column to the output in which the value will be based on what is listed in a particular cell or a particular column.

How would I go about this? (*very new sas user)

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

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

发布评论

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

评论(1

起风了 2024-12-15 17:34:48

在没有听到更多信息的情况下,我假设您想要做的是保存过程频率的输出,然后通过数据步骤进一步操作它。

简单的例子:

data beer;
  length firstname favbrand $20.;
  input firstname $
        favbrand  $;
  datalines;
John bud
Steve dogfishhead
Jason coors
Anna anchorsteam
Bob bud
Dan bud
;
run;

proc freq data=beer;
  table favbrand / out=freqout;
run;

data beerstat(keep=favbrand status);
  set freqout;
  * create a new column called "status" based on the count column ;
  if (count >=2) then status="popular";
  else status = "hipster";
run;

* instead of proc print you can send your output to excel with proc export ;
proc print data=beerstat;
run;

Without hearing more information, I assume what you're trying to do is save the output of your proc freq and then manipulate it further with a data step.

Simple example of this:

data beer;
  length firstname favbrand $20.;
  input firstname $
        favbrand  $;
  datalines;
John bud
Steve dogfishhead
Jason coors
Anna anchorsteam
Bob bud
Dan bud
;
run;

proc freq data=beer;
  table favbrand / out=freqout;
run;

data beerstat(keep=favbrand status);
  set freqout;
  * create a new column called "status" based on the count column ;
  if (count >=2) then status="popular";
  else status = "hipster";
run;

* instead of proc print you can send your output to excel with proc export ;
proc print data=beerstat;
run;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文