Hi,
I am trying to append dataframes, and some of the variables are in diferent formats in different datasets. Its little difficult to cross-check which ones are different as there are too many variables, so I am wondering if there is any method to force the append despite the type mismatch.
Please let me know.
Thanks in advance.
I am trying to append dataframes, and some of the variables are in diferent formats in different datasets. Its little difficult to cross-check which ones are different as there are too many variables, so I am wondering if there is any method to force the append despite the type mismatch.
Code:
. frameappend df1 df2 df3 namelist: too many specified r(103); . frame dir * default 1503 x 14162; hh_endline.dta * df1 1387 x 7503; hh_baseline.dta * df2 1359 x 8193; hh_midline.dta * df3 1503 x 14162; hh_endline.dta Note: frames marked with * contain unsaved data . frameappend df2 shared variables in frames being combined must be both numeric or both string type mismatch r(109);
Thanks in advance.
Comment