私のデータセットの一部の観測は、2 つまたは 3 つの異なる観測に分割する必要があります。たとえば、次の観察:
region income gdp other
North 120 450 50
次のように、領域を除くすべての変数に対して同じ値を持つ 3 つの観測に分割する必要があります。
region income gdp other
IL 120 450 50
MI 120 450 50
IN 120 450 50
次のようなものが必要です:
if (region == "North") {
//create three new observations and delete the old one
}
Stataで可能ですか?