Stata - 如何复制面板数据的单个值?

发布于 2025-01-11 16:02:31 字数 595 浏览 0 评论 0原文

我有 100 只基金的净资产值(这是每只基金的总净资产值)。在 Stata 中,我将这 100 只基金中每只基金 200 个月的回报率堆叠在一起(针对面板数据)。我如何复制 100 个净资产值中的每一个乘以 200,并将它们叠加在一起 ​​- Stata 中有没有方法可以做到这一点?

通常我的流程是在 Excel 中创建 100 列,每列有 200 行净资产(因此,如果 Fund1 净资产例如为 1500000,我会将此值复制到 Fund1 列中的 200 个单元格中的每个单元格中)。然后我将其全部复制到 Stata 并使用“stack”命令将它们堆叠起来。这是非常费力的,如果Stata提供了一种不涉及Excel到这种程度的方法,我希望以后避免这种情况。

这就是数据,本质上我需要将每个净资产值复制 200 次并堆叠。所以,你可以想象 9578780 堆叠了 200 次(相同的值),然后在另一个 4695101 的下面堆叠了 200 次 9578780 等等。

输入图片此处描述

I have values of the net assets for 100 funds (it's one value of total net assets per fund). In Stata, I have the returns for each of those 100 funds for 200 months each stacked on top of each other (for panel data). How do I replicate each of the 100 net asset values times 200, and stack them up together - is there a method in Stata to do it?

Normally my process would be to create 100 columns in Excel and each column would have 200 rows of net assets (so if fund1 net assets are e.g. 1500000, I would copy this value into each of the 200 cells in a fund1 column). Then I would copy all of it to Stata and use 'stack' command to stack them up. It is very laborious and I want to avoid it in future if Stata offers a method that doesn’t involve Excel to this extent.

This is the data and essentially and I need each net asset value to be copied 200 times and stacked. So, you can imagine 9578780 stacked 200 times (same value) and then below another one 4695101 stacked 200 times under 9578780 and so on.

enter image description here

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

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

发布评论

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

评论(1

蛮可爱 2025-01-18 16:02:31

听起来你想要 expand 命令:

clear
input fund_id net_assets_share
1  9578780 
2 4695101 
end

expand 200
sort fund_id

Sounds like you want the expand command:

clear
input fund_id net_assets_share
1  9578780 
2 4695101 
end

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