stata中list的各种用法之字段变形

2024-10-13 20:32:08

1、list语法格式,如下图:

stata中list的各种用法之字段变形

2、输入不带任何参数的list,结果为

stata中list的各种用法之字段变形

3、只显示 make mpg price字段,输入 l make mpg price

stata中list的各种用法之字段变形

4、只显示以m打头的字段,输入 list m*。 *表示多个字符的通配符。

stata中list的各种用法之字段变形

5、显示从price到weight之间的变量,输入li price-weight

stata中list的各种用法之字段变形

6、?表示一个字符的通配符,输入 list ma?e

stata中list的各种用法之字段变形

7、显示一个字段。输入 l gear_r~o

stata中list的各种用法之字段变形
猜你喜欢