2018-06-22 20:57:24 +00:00
|
|
|
import delim input.csv, clear
|
2017-09-23 10:01:46 +02:00
|
|
|
replace c5=c3+c4
|
2019-09-12 10:33:56 -07:00
|
|
|
egen sum=rowtotal(c*)
|
2017-09-23 10:01:46 +02:00
|
|
|
drop if mod(c3,3)==0
|
2018-06-22 20:57:24 +00:00
|
|
|
export delim output.csv, replace
|