New to Stata and already having an issue. I am on a Mac and using a copy of Stata and license from my school, Drexel. I am able to load one file into Stata, and then when trying to append I keep getting an r(601) error file ####### not found. In doing some internet research I thought it could be a folder control issue, so I installed Stata on my desktop. Still getting the r(601) error.
Thought it could be a Stata license issue, but I am able to see the serial number using commands.
I have tried doing append using command and also the GUI. I have watched training on append and I am pretty sure I am typing the command correctly.
Below are my command and results. I can successfully import the test data 2.csv file, bu then when trying to use that file to append the one loaded is when I get the r(601) error. Any Idas?
Gary
o
. clear all
. import delimited "/Users/garyhuff/Desktop/test data 2.csv"
(encoding automatically selected: UTF-8)
(11 vars, 18 obs)
. clear all
. import delimited "/Users/garyhuff/Desktop/test data. 1.csv"
(encoding automatically selected: UTF-8)
(11 vars, 18 obs)
. append using "/Users/garyhuff/Desktop/test data 2.csv"
file /Users/garyhuff/Desktop/test data 2.csv not found
r(601);
Thought it could be a Stata license issue, but I am able to see the serial number using commands.
I have tried doing append using command and also the GUI. I have watched training on append and I am pretty sure I am typing the command correctly.
Below are my command and results. I can successfully import the test data 2.csv file, bu then when trying to use that file to append the one loaded is when I get the r(601) error. Any Idas?
Gary
o
. clear all
. import delimited "/Users/garyhuff/Desktop/test data 2.csv"
(encoding automatically selected: UTF-8)
(11 vars, 18 obs)
. clear all
. import delimited "/Users/garyhuff/Desktop/test data. 1.csv"
(encoding automatically selected: UTF-8)
(11 vars, 18 obs)
. append using "/Users/garyhuff/Desktop/test data 2.csv"
file /Users/garyhuff/Desktop/test data 2.csv not found
r(601);
Comment