Answered step by step
Verified Expert Solution
Question
1 Approved Answer
data Cars; infile ' C: Users Markku Malmi Jr Documents Comp App Spring 2 0 1 9 Data Cars
data Cars;
infile C:UsersMarkku Malmi JrDocumentsComp App Spring DataCarscsv dsd firstobs;
length Make $ Model $;
input Make $ Model $ Type $ Origin $ DriveTrain $
MSRP Invoice EngineSize Cylinders Horsepower MPGCity MPGHighway Weight Wheelbase Length;
informat MSRP Dollar Invoice Dollar;
format MSRP Dollar Invoice Dollar;
label Make 'Car Company' Model 'Model ID Designation' Origin "Car's Country of Origin"
MSRP 'Manufacturer Suggested Retail Price' Invoice 'Cost of Car for Dealership'
EngineSize 'Engine Size Liters Cylinders 'Number of Cylinders'
MPGCity 'Miles Per Gallon City MPGHighway 'Miles Per Gallon Highway
Weight "Car's Weight lbs Wheelbase 'Size of Wheel Base Inches Length "Car's Length Inches;
run;
In the code provided above the dollar signs in the input statement do what?
Group of answer choices
Let SAS know the variable listed after it has special values
Let SAS know the variable listed after it should be character
Let SAS know the variable listed before it should be character
Let SAS know the variable listed before it should be numeric
Let SAS know the variable listed after it should be numeric
Let SAS know the variable listed before it has special values
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started