
10-09-2023
mohamed_zaki
Barite | Level 11
Member since
08-11-2014
- 490 Posts
- 85 Likes Given
- 60 Solutions
- 194 Likes Received
This widget could not be displayed.
-
Latest posts by mohamed_zaki
Subject Views Posted 1735 08-26-2016 08:39 PM 1969 08-26-2016 08:36 PM 2420 08-25-2016 06:35 PM 1391 08-24-2016 11:57 AM 4845 08-07-2016 07:20 PM 1609 04-07-2016 08:52 PM 2467 03-20-2016 02:32 AM 5708 03-01-2016 06:19 AM 3032 02-29-2016 09:13 AM 7188 02-28-2016 05:38 PM -
Activity Feed for mohamed_zaki
- Got a Like for Re: Multiple conditions in one if statement. 11-24-2024 10:53 AM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 10-28-2023 05:00 PM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 03-17-2022 03:19 PM
- Got a Like for Re: Is there a procedure to check whether missing data are missing completely at random or missing at random?. 09-21-2021 06:33 PM
- Got a Like for Re: Multiple conditions in one if statement. 11-28-2020 01:39 AM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 08-20-2020 01:15 PM
- Got a Like for Re: functions. 10-29-2019 08:18 AM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 08-28-2019 11:06 PM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 05-14-2019 05:44 AM
- Got a Like for Re: Filling gap in a panel data. 04-28-2019 07:48 AM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 03-01-2019 02:11 PM
- Got a Like for Re: Sum Statement. 02-14-2019 04:57 PM
- Got a Like for Re: PROC Export: Replacing sheet error. 11-22-2018 09:04 AM
- Got a Like for Re: proc glm: class vs. absorb. 06-18-2018 09:57 PM
- Got a Like for Re: SAS Miner: export train cluster results. 06-18-2018 03:02 AM
- Got a Like for Re: proc glm: class vs. absorb. 10-29-2017 10:35 PM
- Got a Like for Re: Grand total in proc report not working. 10-16-2017 04:54 PM
- Got a Like for Re: You can only BREAK on GROUPing or ORDERing variables when doing PROC REPORT. 09-18-2017 11:42 AM
- Got a Like for Re: Find Week within a Month. 09-13-2017 09:03 AM
- Got a Like for Re: How to assign a unique ID number to each group of identical values in a column?. 05-28-2017 11:56 AM
-
Posts I Liked
Subject Likes Author Latest Post 3 2 1 3 3 -
My Liked Posts
Subject Likes Posted 1 01-22-2016 05:32 AM 1 09-16-2014 10:27 AM 1 02-25-2016 01:09 PM 1 12-12-2015 09:41 AM 1 12-13-2015 07:32 PM
10-17-2014
11:51 AM
okay input argument to the macro,but share your code to help you further.
... View more
10-17-2014
09:06 AM
First: Your problem is in your logic. As you know -1 > - 2 so is -.124999999999999 > -.125 that is mean that when you say low - (-0.1) = 'A' -0.2 - (0) = 'B' you will get overlap, so you can not say low - -124999999999999 = 'A' -0.125 - (-0.624999999) = 'B' Second: you do not need () in format Finally: try this, it should work proc format; value V1format low - -0.875 = 'A' -0.874999999 - -0.625 = 'B' -0.624999999 - -0.375 = 'C' -0.374999999 - -0.125 = 'D' -0.124999999 - 0 = 'E' 0-0.1249999999 = 'F' 0.125 - 0.3749999999 = 'G' 0.375 - 0.6249999999 = 'H' 0.625 - 0.8749999999 = 'I' 0.875 - high = 'J'; run;
... View more
10-16-2014
08:21 AM
What if the data sets have different names not a series like class1 , class2 ...... and i do not know there names in advance_ the data sets i mean_, all what i know is the lib name
... View more
10-16-2014
07:29 AM
1 Like
How to delete every observation in each dataset in a specific lib. PROC DELETE delete all the data set, what i need is to delete all the data set observations not the data sets it self.
... View more
10-09-2014
06:51 PM
This note let you know about the missing values that were created. for example check this 4. Missing values in assignment statements . It give you an example with details about this note.
... View more
10-09-2014
05:23 PM
What do you mean: Do you want each observation in your data set to printed in separate file, where they are printed in three lines and each variables printed beside the column name as in the example you provided above.
... View more
10-06-2014
04:17 PM
Did you made sure that the "data" folder exist in "myfoldrs" folder physically? Libname Statement create a short reference to your folder it will not create one for you.
... View more
10-06-2014
05:05 AM
What do you mean by "how many answers are correct?" The most of the questions have only one correct answers and some questions _which are minority_ have more than one correct answers and you can notice that from the question and the exam system gives you the ability to choose more than one answers.
... View more
10-03-2014
04:56 PM
Where is the problem? Share your code please. Or check : Inserting Rows into Tables
... View more
10-02-2014
04:58 PM
How this is not working for you data have; input y; cards; 80 120 1390 2235042 ; run; data want; set have; yy=strip(put(y,8.1)); z= length(yy); v=8-z; x=catt(yy,repeat('0',v-1)); run;
... View more
10-02-2014
03:22 PM
If you want to deal with char, you can also use the repeat function for example: data want ; y='33.3'; z=length(y); v=8-z; x=catt(y,repeat('0',v-1)); run;
... View more
09-29-2014
05:21 PM
data want (drop=newV ); set have; by id1 id2; if (first.id2 ) then do; retain newV ' '; if STATUS = ' ' then Do ; STATUS = 'V'; newV=STATUS; End; Else if STATUS in ('C','V') then newV=STATUS; End; Else do; If STATUS in ('C','V') then newV=STATUS; Else if STATUS=' ' then STATUS=newV; end; run;
... View more
09-29-2014
03:58 PM
Congratulation Dr. Wicklin ... All the best Thanks mohamed
... View more