「Table-related commands in STATA」の版間の差分
ナビゲーションに移動
検索に移動
Vaccipedia.admin (トーク | 投稿記録) |
Vaccipedia.admin (トーク | 投稿記録) |
||
25行目: | 25行目: | ||
!table | !table | ||
|<pre>table v1</pre> | |<pre>table v1</pre> | ||
− | create a one-way table | + | create a one-way table of ''v1''<br> with '''simple''' statistics |
|<pre>table v1 v2</pre> | |<pre>table v1 v2</pre> | ||
− | create a two-way table | + | create a two-way table of ''v1''<br> in row† and ''v2'' in column† |
|<pre>,statistics( )</pre> | |<pre>,statistics( )</pre> | ||
|- | |- | ||
!tabulate | !tabulate | ||
|<pre>tabulate v1</pre> | |<pre>tabulate v1</pre> | ||
− | create a one-way table | + | create a one-way table of ''v1''<br> with '''detailed''' statistics |
|<pre>tabulate v1 v2</pre> | |<pre>tabulate v1 v2</pre> | ||
− | create a two-way table | + | create a two-way table with ''v1''<br> in row† and ''v2'' in column† |
|<pre>,chi2</pre> | |<pre>,chi2</pre> | ||
Pearson's chi-squared test; <nowiki>*</nowiki>only for two-way | Pearson's chi-squared test; <nowiki>*</nowiki>only for two-way | ||
42行目: | 42行目: | ||
!tabstat | !tabstat | ||
|<pre>tabstat v1</pre> | |<pre>tabstat v1</pre> | ||
− | create a one-way table of ''v1''<br> with detailed statistics | + | create a one-way table of ''v1''<br> with '''detailed''' statistics |
|''*no two- or multiple-way table'' | |''*no two- or multiple-way table'' | ||
|<pre>,statistics( )</pre> | |<pre>,statistics( )</pre> | ||
50行目: | 50行目: | ||
!summarize | !summarize | ||
|<pre>summarize v1</pre> | |<pre>summarize v1</pre> | ||
− | detailed statistics of ''v1'' | + | '''detailed''' statistics of ''v1'' |
|''*no two- or multiple-way summary'' | |''*no two- or multiple-way summary'' | ||
|<pre>,detail</pre> | |<pre>,detail</pre> |
2023年4月2日 (日) 19:15時点における版
目次
Abbreviations of commands
table | (no abbv.) |
---|---|
tabulate | ta tab |
tabstat | (no abbv.) |
summarize | su |
Differences between table, tabulate, tabstat, summarize
one-way | two-way | options | |
---|---|---|---|
table | table v1 create a one-way table of v1 |
table v1 v2 create a two-way table of v1 |
,statistics( ) |
tabulate | tabulate v1 create a one-way table of v1 |
tabulate v1 v2 create a two-way table with v1 |
,chi2 Pearson's chi-squared test; *only for two-way ,summarize(v3) detailed statistics for v3 |
tabstat | tabstat v1 create a one-way table of v1 |
*no two- or multiple-way table | ,statistics( ) ,by(v3) detailed statistics for each of v3 |
summarize | summarize v1 detailed statistics of v1 |
*no two- or multiple-way summary | ,detail |
† row = transverse direction, column = longitudinal direction
Sample data
Suppose we have such a dataset in STATA.
Where,
id | discrete | :Identification number |
---|---|---|
sex | binary | :Male=0, Female=1 |
data1 | continuous | :Results of a certain test |
factorA, B, C | binary | :Negative=0, Positive=1 |
SES | categorical | :Categories of Socio-Economic Status, divided into four |
disease | binary | :Free from a certain disease=0, Having the disease=1 |
One-way
Summary of sex, a binary variable
table | Both reports frequency but tabulate is more detailed | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed | |
summarize |
Summary of data1, a continuous variable
table | Both reports frequency of each value, which does not make sense | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed | |
summarize |
Summary of SES, a categorical variable
table | Both reports frequency but tabulate is more detailed | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed | |
summarize |
One-way, multiple
table | *Both do not create one-way multiple table | |
---|---|---|
tabulate | ||
tabstat | Reports mean in row (transverse) direction | |
summarize | Reports more details in column (longitudinal) direction |
Two-way
Summary of factorA based on sex
table | Both creates the same table but tabulate is better visualized | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed; needs bysort option before the command | |
summarize |
Summary of sex based on factorA
table | Both creates the same table but tabulate is better visualized | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed; needs bysort option before the command | |
summarize |
Summary of data1 based on disease
table | *Both do not create a meaningful table for continuous variable | |
---|---|---|
tabulate | ||
tabstat | Both reports mean but summarize is more detailed; needs bysort option before the command | |
summarize |
Two-way with proportions
Summary of factorA based on sex with proportions
Two-way, multiple
Summary of factorA, factorB, factorC based on disease
Summary of factorA, factorB, factorC based on SES
Two-way of binary/categorical plus summary of continuous
Summary of data1 based on disease and SES
tabulate | This tells means, SDs and frequencies of a continuous variable divided in two-way of binary/categorical variables |
---|