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?
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?
You can use the list
command for this:
list column in 1/6
or
list in 1/6
If you have a look at help list
, you will discover plenty of options to customize the display.
© 2022 - 2024 — McMap. All rights reserved.