Great work, thanks for producing this public good!
@KuldeepSingh-kq9yj2 жыл бұрын
if we want to numeric variable and string variable can we do that? like in d variable instead of do we want to add any any variable with numeric value given in our data set ? example 23adf
@EconometricsMelody2 жыл бұрын
clear set obs 12 gen a =23 gen b = "adf" gen c = string(a)+b
@EconometricsMelody2 жыл бұрын
egen d = concat(a b), punct("")
@ferv88142 жыл бұрын
thank u!!!
@Mir_sab2 жыл бұрын
Sir how to write "doitnowok".
@Mir_sab2 жыл бұрын
How to remove extra space from the column?
@EconometricsMelody2 жыл бұрын
clear set obs 10 gen a = " do it now ok " split a, gen(m) gen b = m1+m2+m3+m4 order a b
@EconometricsMelody2 жыл бұрын
clear set obs 10 gen a = " do it now ok " split a, gen(m) egen b = concat(m*) order a b