01-22-2023
philjones820
Fluorite | Level 6
Member since
09-26-2014
- 9 Posts
- 4 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by philjones820
Subject Views Posted 582 12-18-2020 10:04 PM 1594 02-23-2019 07:16 PM 14469 02-07-2019 09:12 AM 14517 02-05-2019 06:12 PM 1442 02-04-2019 08:44 PM 14579 02-04-2019 08:40 PM 1459 02-03-2019 11:56 AM 1527 02-02-2019 07:30 PM -
Activity Feed for philjones820
- Posted Importing multiple (14)text dlm file into SAS at the same time on SAS Programming. 12-18-2020 10:04 PM
- Liked Re: Is it possible to obtain a single column Average without using Proc Means? for Patrick. 02-23-2019 09:23 PM
- Liked Re: Is it possible to obtain a single column Average without using Proc Means? for Tom. 02-23-2019 09:23 PM
- Liked Re: Is it possible to obtain a single column Average without using Proc Means? for Astounding. 02-23-2019 09:22 PM
- Posted Is it possible to obtain a single column Average without using Proc Means? on SAS Programming. 02-23-2019 07:16 PM
- Posted Re: Format 3 decimal places on SAS Programming. 02-07-2019 09:12 AM
- Posted Re: Format 3 decimal places on SAS Programming. 02-05-2019 06:12 PM
- Posted Re: SAS Homework Assignment Help no errors but want to make sure MIN and MAX variables entered corre on SAS Programming. 02-04-2019 08:44 PM
- Tagged Format 3 decimal places on SAS Programming. 02-04-2019 08:41 PM
- Posted Format 3 decimal places on SAS Programming. 02-04-2019 08:40 PM
- Posted Re: SAS Homework Assignment Help no errors but want to make sure MIN and MAX variables entered corre on SAS Programming. 02-03-2019 11:56 AM
- Posted SAS Homework Assignment Help no errors but want to make sure MIN and MAX variables entered correctly on SAS Programming. 02-02-2019 07:30 PM
- Tagged SAS Homework Assignment Help no errors but want to make sure MIN and MAX variables entered correctly on SAS Programming. 02-02-2019 07:30 PM
- Tagged SAS Homework Assignment Help no errors but want to make sure MIN and MAX variables entered correctly on SAS Programming. 02-02-2019 07:30 PM
- Liked Excel PivotTable connected to SAS tables for AleksejsS. 12-06-2014 01:57 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1
12-18-2020
10:04 PM
Hello, I have a folder of 14 text delimited files that I need to import into SAS. Is it possible to import them all in at the same time rather than one at a time and is there any sample code and macro that anyone could recommend? Is there possibly a way to loop through each file from 1 to 14 and pull all 14 of the files in simultaneously?
... View more
02-23-2019
07:16 PM
Is it possible to get just the single column average of a dataset output into a separate variable without using Proc Means?. I need to obtain the average of the OBP column in the attached spreadsheet( see Column G highlighted with an average of 0.337829493 in cell Q10) and then append it to the end of that same dataset. It can be done in Excel successfully but when I average it in SAS, I get the average for each individual player in the data set and just need that one combined OBP average of 0.337829493 as a variable to append it to the original data set. My code is listed below. Also what would be best to use to append it, Would I just use PROC APPEND? Thanks in advance for any help with this
PROC IMPORT DBMS=xlsx OUT=more_rate replace
DATAFILE="/folders/myfolders/sasuser.v94/baseball_more_rate.xlsx";
GETNAMES=YES;
RUN;
data more_avg2;
set work.more_rate;
TotalOBP=sum(OBP);
AverageOBP=TotalOBP/217;
drop TotalOBP;
run;
PROC IMPORT DBMS=xlsx OUT=more_rate replace DATAFILE="/folders/myfolders/sasuser.v94/baseball_more_rate.xlsx"; GETNAMES=YES; RUN; data more_avg2; set work.more_rate; TotalOBP=sum(OBP); AverageOBP=TotalOBP/217; drop TotalOBP; run;
PROC IMPORT DBMS=xlsx OUT=more_rate replace DATAFILE="/folders/myfolders/sasuser.v94/baseball_more_rate.xlsx"; GETNAMES=YES; RUN; data more_avg2; set work.more_rate; TotalOBP=sum(OBP); AverageOBP=TotalOBP/217; drop TotalOBP; run;
PROC IMPORT DBMS=xlsx OUT=more_rate replace DATAFILE="/folders/myfolders/sasuser.v94/baseball_more_rate.xlsx"; GETNAMES=YES; RUN; data more_avg2; set work.more_rate; TotalOBP=sum(OBP); AverageOBP=TotalOBP/217; drop TotalOBP; run;
... View more
02-07-2019
09:12 AM
Sorry to confuse you, that was not my intention. The assignment asked for a 3 decimal place format in SAS. I was just using Excel for comparison not formatting. Thanks for your help, will try to invest more time in putting the questions together in the future
... View more
02-05-2019
06:12 PM
The Excel is output is fine now
have a number 0.573 that I need to format with 3 decimal places in SAS and I though format 9.3 would do that, I don't know if it is supposed to give me 3 decimal places after the 0 like it is now or if I need to remove the 0?
... View more
02-04-2019
08:44 PM
Quick question-Is there a way to hide the variables MIN and MAX so that they wont show in the output results?
... View more
02-04-2019
08:40 PM
I'm trying to format these values with 3 decimal places but I keep getting the leading zeroes in front of the decimal place
I'm using the following code
format AVG 9.3; format SLG 6.3; format OBP 9.2; format ISO 6.3;
format AVG 9.3; format SLG 6.3; format OBP 9.3; format ISO 6.3;
format AVG 9.3; format SLG 6.3;
format AVG 9.3; format SLG 6.3;
format AVG 9.3; format SLG 6.3;
format OBP 9.2
I have attached the Excel output from SAS, please take a look at the AVG, SLG, OBP and ISO columns O, P,Q and R on the attached spreadsheet and advise
... View more
- Tags:
- decimal
02-03-2019
11:56 AM
Thanks very much, I will try that!
... View more
02-02-2019
07:30 PM
data baseball4;
set work.baseball;
array NumVar _numeric_;
do over NumVar;
if NumVar=. then NumVar=0;
end;
format AVG 6.3;
format SLG 6.3;
MIN=SALARY< 500000;
MAX=SALARY<=10000000;
OBP=H+HBP/PA;
format OBP 6.3;
ISO=SLG-AVG;
format ISO 6.3;
SP=SO/PA;
format SP percent7.1;
BA=H/AB;
format BA 6.3;
IF SALARY >=MAX THEN Salary_Description='Filthy Rich';
ELSE Salary_Description='none';
if SALARY < MIN then sal_type ='Less than League Minimum';
/* ELSE if SALARY >= MIN then sal_type='Filthy Rich'; */
ELSE sal_type='middle';
run;
Hi, I'm not getting any errors in my code, but can someone look at the attached assignment and let me know if there is a better or more efficient way to write this according to the assignment criteria. Thanks, much appreciated!
... View more