使用 Stata 对两个或多个变量进行分组,如 SQL GROUP BY 中那样

发布于 2024-12-04 18:16:05 字数 184 浏览 1 评论 0原文

在 SQL 中,可以对多个变量进行分组:

SELECT a, b, COUNT(*)
FROM t
GROUP BY a, b

我们得到的是一个表,其中 b 的级别嵌套在 a 的级别中。

如何用 Stata 执行此操作 a) 在windows中输出? b) 存储为文件?

In SQL it is possible to group with several variables:

SELECT a, b, COUNT(*)
FROM t
GROUP BY a, b

What we get is a table with the levels of b nested in the level of a.

How can this performed with Stata
a) output in windows?
b) stored as file?

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

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

发布评论

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

评论(1

撩起发的微风 2024-12-11 18:16:05

如果您只有两个变量,并且不需要两个将输出写入文件,您可以这样做:

tabulate a b

如果您想将输出写入文件或者如果您有两个以上的分组变量,您可以执行以下操作:

contract a b

在屏幕上打印数据:

sort a
list, sepby(a)

将数据保存到 Stata 格式的文件 (.dta) ...

save results

... 或制表符分隔的 ascii 文件

outsheet using results.csv

如果要收缩数据,请在屏幕上列出结果,并返回原始数据,可以使用保留恢复。前者将数据“冻结”在给定点,后者允许返回到该点。

preserve
contract a b
list
restore

If you have only two variables, and you don't need two write the ouptut to a file, you can do:

tabulate a b

If you want to write the output to a file or if you have more than two grouping variables, you can do as follows:

contract a b

Print the data on the screen:

sort a
list, sepby(a)

Save the data to a file in Stata format (.dta) ...

save results

... or to a tab-delimited ascii file

outsheet using results.csv

If you want to contract your data, list the result on the creen, and the return to the original data, you can use preserve and restore. The former "freezes" the data at a given point, and the latter allows to come back to that point.

preserve
contract a b
list
restore
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文