6 lines
123 B
Text
6 lines
123 B
Text
|
|
import delim input.csv, clear
|
||
|
|
replace c5=c3+c4
|
||
|
|
egen sum=rowtotal(c*)
|
||
|
|
drop if mod(c3,3)==0
|
||
|
|
export delim output.csv, replace
|