Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Great work, thanks for producing this public good!
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
clearset obs 12gen a =23gen b = "adf"gen c = string(a)+b
egen d = concat(a b), punct("")
thank u!!!
Sir how to write "doitnowok".
How to remove extra space from the column?
clearset obs 10gen a = " do it now ok "split a, gen(m)gen b = m1+m2+m3+m4order a b
clearset obs 10gen a = " do it now ok "split a, gen(m)egen b = concat(m*)order a b
ua-cam.com/video/np_ZY_JG_7g/v-deo.html
ua-cam.com/video/atEHrLmPhKU/v-deo.html
Great work, thanks for producing this public good!
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
clear
set obs 12
gen a =23
gen b = "adf"
gen c = string(a)+b
egen d = concat(a b), punct("")
thank u!!!
Sir how to write "doitnowok".
How to remove extra space from the column?
clear
set obs 10
gen a = " do it now ok "
split a, gen(m)
gen b = m1+m2+m3+m4
order a b
clear
set obs 10
gen a = " do it now ok "
split a, gen(m)
egen b = concat(m*)
order a b
ua-cam.com/video/np_ZY_JG_7g/v-deo.html
ua-cam.com/video/atEHrLmPhKU/v-deo.html