The is in response to the Activity (Lesson 2) for Importing Data into SAS
I ran the following code with success (no errors, no warnings):
proc import REPLACE datafile="s:/workshop/EPG1V2/data/storm_damage.tab"
dbms=tab out=storm_damage_tab;
run;
The given answer in the Activity is:
proc import datafile="s:/workshop/EPG1V2/data/storm_damage.tab"
dbms=tab out=storm_damage_tab REPLACE;
run;
I ran the code both ways & the results look the same. Can someone please elaborate on this? Does it matter which way the code is written? Thanks.