Hello, I have a column vector 200x1 and I created a new variable with this:
st_addvar("double", "media")
now I want that the values of my column vector (called: MAR) become the values of my new variable "media" with this:
st_store(.,1,"media",MAR)
but stata shows these errors:
st_store(): 3200 conformability error
<istmt>: - function returned error
I've tried using:
st_store((1::200),1,"media",MAR)
st_store((1::rows(MAR)),1,"media",MAR)
but still doesn't work
Thank you for your help
st_addvar("double", "media")
now I want that the values of my column vector (called: MAR) become the values of my new variable "media" with this:
st_store(.,1,"media",MAR)
but stata shows these errors:
st_store(): 3200 conformability error
<istmt>: - function returned error
I've tried using:
st_store((1::200),1,"media",MAR)
st_store((1::rows(MAR)),1,"media",MAR)
but still doesn't work
Thank you for your help
Comment