「Table-related commands in STATA」の版間の差分
ナビゲーションに移動
検索に移動
Vaccipedia.admin (トーク | 投稿記録) |
Vaccipedia.admin (トーク | 投稿記録) |
||
| 7行目: | 7行目: | ||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| − | ! | + | ! |
| − | + | !one-way | |
| + | !two-way | ||
| + | !options | ||
|- | |- | ||
| − | !table ''v1 | + | !table |
| − | |create a two-way table of ''v1'' in row† and ''v2'' in column† | + | |<pre>table v1</pre> |
| + | create a one-way table<br> of ''v1'' with '''simple''' statistics | ||
| + | |<pre>table v1 v2</pre> | ||
| + | create a two-way table<br> of ''v1'' in row† and ''v2'' in column† | ||
| + | |<pre>statistics( )</pre> | ||
|- | |- | ||
| − | !tabulate ''v1'' | + | !tabulate |
| − | |create a | + | |<pre>tabulate v1</pre> |
| + | create a one-way table<br> of ''v1'' with '''detailed''' statistics | ||
| + | |<pre>tabulate v1 v2</pre> | ||
| + | create a two-way table<br> with ''v1'' in row† and ''v2'' in column&dagger | ||
| + | |<pre>chi2</pre><nowiki>*</nowiki>only for two-way | ||
| + | <pre>summarize(v3)</pre> | ||
|- | |- | ||
| − | ! | + | !tabstat |
| − | + | |<pre>tabstat v1</pre> | |
| + | create a one-way table of ''v1''<br> with detailed statistics | ||
| + | |<nowiki>*</nowiki>no two- or multiple-way table | ||
| + | |- | ||
| + | !summarize | ||
|} | |} | ||
† row = transverse direction, column = longitudinal direction | † row = transverse direction, column = longitudinal direction | ||
2023年4月2日 (日) 16:19時点における版
Suppose we have such a dataset in STATA.
Differences between table, tabulate, tabstat, summarize
| one-way | two-way | options | |
|---|---|---|---|
| table | table v1 create a one-way table |
table v1 v2 create a two-way table |
statistics( ) |
| tabulate | tabulate v1 create a one-way table |
tabulate v1 v2 create a two-way table |
chi2*only for two-way summarize(v3) |
| tabstat | tabstat v1 create a one-way table of v1 |
*no two- or multiple-way table | |
| summarize |
† row = transverse direction, column = longitudinal direction
Abbreviations of commands
| table | (no abbv.) |
|---|---|
| tabulate | ta tab |
| tabstat | (no abbv.) |
| summarize | su |
