Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I am stuck on a question for my assignment: Apply a log transformation to PrizeMoney and compute the new variable ln_Prize=log(PrizeMoney). When I try applying
I am stuck on a question for my assignment:
Apply a log transformation to PrizeMoney and compute the new variable ln_Prize=log(PrizeMoney).
When I try applying the log transformation, it doesn't show up in the results and I'm not sure why. Do you know why the log tranformation isn't working? When I try to make a histogram of the new log variable it says "variable In_Prize not found.
proc import datafile="pgatour2006.csv" out=PGA replace;
delimiter = ',';
getnames=yes;
logIn_Prize=log(PrizeMoney);
run;
proc print;
run;
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