列出 Stata 中的前几行
我已经使用 R 相当多了,我知道我可以使用 head(data[,"column"])
或 head(data)
来查看前几行/单元格的数据。
我怎样才能在 Stata 中做到这一点?
I have used R quite a bit and I know I can use head(data[,"column"])
or head(data)
to see the first few rows/cells of data.
How can I do that in Stata?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
list
命令来实现此目的:或者
如果您查看
help list
,您会发现大量用于自定义显示的选项。You can use the
list
command for this:or
If you have a look at
help list
, you will discover plenty of options to customize the display.