12-07-2016
SamuelRajKandru
Quartz | Level 8
Member since
08-25-2014
- 45 Posts
- 33 Likes Given
- 0 Solutions
- 1 Likes Received
About
Part time freelance Audio Engineer (live sound).
-
Latest posts by SamuelRajKandru
Subject Views Posted 2458 12-01-2016 01:16 AM 1328 10-09-2016 05:58 PM 970 09-17-2016 04:29 AM 976 09-17-2016 03:50 AM 4209 09-17-2016 03:50 AM 4215 09-17-2016 03:14 AM 4224 09-17-2016 02:37 AM 990 09-17-2016 02:35 AM 4232 09-17-2016 01:00 AM 4256 09-16-2016 02:49 PM -
Activity Feed for SamuelRajKandru
- Got a Like for Filename Statement. 08-27-2019 09:57 PM
- Posted Re: Certification:Clinical Trials Programming Using SAS 9 – Accelerated Version on SAS Certification. 12-01-2016 01:16 AM
- Liked Re: Descriptive Statistics for Reeza. 10-10-2016 02:12 PM
- Posted Descriptive Statistics on SAS Programming. 10-09-2016 05:58 PM
- Liked Re: Proc Format for Tom. 09-17-2016 04:30 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 04:29 AM
- Liked Re: Proc Format for Reeza. 09-17-2016 04:29 AM
- Liked Re: Proc Format for Reeza. 09-17-2016 04:19 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 03:50 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 03:50 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 03:14 AM
- Liked Re: Proc Format for Tom. 09-17-2016 02:38 AM
- Liked Re: Proc Format for Reeza. 09-17-2016 02:38 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 02:37 AM
- Liked Re: Proc Format for Reeza. 09-17-2016 02:37 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 02:35 AM
- Liked Re: Unable to load SAS Studio Edition - Port issue? for bluemountains. 09-17-2016 01:12 AM
- Posted Re: Proc Format on SAS Procedures. 09-17-2016 01:00 AM
- Posted Re: Proc Format on SAS Procedures. 09-16-2016 02:49 PM
- Posted Re: Proc Format on SAS Procedures. 09-16-2016 02:34 PM
-
Posts I Liked
Subject Likes Author Latest Post 3 1 1 1 1 -
My Liked Posts
Subject Likes Posted 1 08-20-2016 09:52 AM
12-01-2016
01:16 AM
Hi, can you please tell me what accelerated version means? ##- Please type your reply above this line. Simple formatting, no attachments. -##
... View more
10-09-2016
05:58 PM
Can anyone explain me the terms:
Cell frequency
Cell percentage of total frequency
Cell percentage of row frequency
Cell percentage of column frequency
in layman's terms, please?
... View more
09-17-2016
03:50 AM
Okay, corrected the code and submitted it. There weren't any errors or warnings in the log.
... View more
09-17-2016
03:50 AM
Okay, corrected the code and submitted it. There weren't any errors or warnings in the log.
... View more
09-17-2016
03:14 AM
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
55
56 data test;
57 input orig $5.;
58 want=put("TA2", $jobf.);
59 cards;
NOTE: The data set WORK.TEST has 13 observations and 2 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.00 seconds
73 ;
74 run;
75
76 proc print data=test;run;
NOTE: There were 13 observations read from the data set WORK.TEST.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.07 seconds
cpu time 0.08 seconds
77
78 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
90
... View more
09-17-2016
02:37 AM
Below is the screenshot of the output. I think something's wrong?
... View more
09-17-2016
02:35 AM
09-17-2016
01:00 AM
Reeza, can I copy paste this code and run it? or do I need to edit anything?
... View more
09-16-2016
02:49 PM
proc format; value $Jobf 'TA2'='MANAGER' 'ME2'='ASSISTANT' 'ME1'='TECHNICAL WRITER' 'FA3'='SENIOR TECHNICAL WRITER' 'TA3'='ASST MANAGER' 'ME3'='ASSISTANT ASST' 'SCP'='TIME PASS'; RUN; Is this code correct?
... View more
09-16-2016
02:34 PM
JobCode is the variable. 'ME2' and 'SE2' are the values of the variable JobCode.
... View more
09-16-2016
02:07 PM
How do you create a (proc) format for a variable having mixed values (character and numeric) like ME2 and SE2 ? Is it possible? Or is there any other way?
... View more
09-16-2016
01:20 PM
Done that, but of no use. My variable has mixed values. So I need to figure how to create a format for the jobcode values like 'ME2' and 'SE3'. Is there any way?
... View more
09-13-2016
03:28 AM
I tried to create a character format and when I use the format in the print statement, the log window displays the following error. I defined the format type to be a character type format. But the error message tells me that I'm using a numerical format type on a character variable. What can be the solution? how can JobCode's - mixed values (character and numeric type) be displayed using a proc format? Is it possible? If no, is there any other solution for this?
... View more