Hi Ajith, We have the video for Arrays which you can watch using below link and for SURVEYSELECT we will make the one soon. Happy Learning - th-cam.com/video/3j-UKFrv3tc/w-d-xo.html
If have this in the column you are using as key to join the tables, if so then either- >> please remove the duplicates first and then join >> Concatenate that column with any other one which is common in both and doesn't have duplicates, that will create unique values and then you can use the same as key var. to join further
Nice video with one item noted: when the output changes at 31:24, we observe a category value of "toddler" that shows up with no prior code to tag the age category as "toddler". All we had before this was either "kid", "teenage" or "young", based on age. Where is the code to tag "toddler"? Oops.
Alex thanks for highlighting this, we are definitely going to be careful about such mismatches however here the category 'Kids' can be considered as toddler. To note this has nothing to do real life toddler age 😊
Not sure what link you are exactly looking for. In the description section, the github link for all the excel files is given, same mentioned here againg - github.com/LEARNEREA/Excel_Files at the below github link, you can find all of the SAS Scripts and Data used - github.com/LEARNEREA/SAS From below, you can download many of the datasets stored in excel - github.com/LEARNEREA/Excel_Files let me know in case of any further suggestions needed
great video, thank you so much! Have a question, in sql, we could use LIMIT to select top n observations or rows for a certain column, let's say select top 5 records with math score in each grade, how we get this with sas sql? or we can use this car data, to select top 5 most expensive cars in each car type? In sql, you can use group by type order by msrp, then limit 5, but sas proc sql doesn't have LIMIT function, how we do it in SAS proc sql?
you can use the option "outobs" but that will give you n number of records on overall level and not by each of the group if you are interested in doing that using data step then what you can do is - first - sort the data by car type and msrp in descending order second - create a counter variable by car type (to learn this you can check out the video - th-cam.com/video/8FDkHul0TL0/w-d-xo.html ) third - filter for the rows where counter variable is
Hi Suman, There are certain limitations with Proc SQL as well as with Data Step and that is where we use either of them as an alternate. Therefore you can use data step to calculate the cumulative sum
case when sex = "f" then "female" else "male" end as sex_new_var you can check out below for detailed explanations - th-cam.com/video/5v-wtE6dJNU/w-d-xo.html
Kudos to the instructor. All other SAS tutorials are so confusing and boring but this one is really good!!!
Glad it helped
This has been the most comprehensive as well as of short duration video. I have learned so so much. Thank you!
Wonderful and comprehensive tutorial. Thank you for all your efforts
just what I needed. Thank you. Much love
The best of what I have watched about SQL in the simplest fashion so far. Thank you
Glad you liked it
Wow, great job, I am understanding sas now, thank you.
Glad it was helpful!
Very easy to follow and much helpful! Thanks!
Glad it was helpful!
YOU METHOD IS SO CREATIVE SIR, THANKS
Thnku very much sir for giving good info .. really I learnt a lot.. keep make videos sir
Thanks for the wonderful content video in proc SQL. Kudos to your efforts taken.
Glad you liked it!
thanks, its nice nice video for proc sql
Glad you like it
Thank you so much for clear explanation. One question , Is Proc SQL included in the syllabus of base SAS specialist exam?
Great video👍,very very helpful! I’ve learn a lot from this tutorial. Thanks! 🌹🌹
very well explained..thanks a lot
Thank you very much, it a very informative video.
Glad it helped you
Do you have any video about PROC ARRAYS and PROC SURVEYSELECT?
Hi Ajith,
We have the video for Arrays which you can watch using below link and for SURVEYSELECT we will make the one soon. Happy Learning -
th-cam.com/video/3j-UKFrv3tc/w-d-xo.html
Awesome effort sir.... your teaching explanation is too good
So nice of you
Very good explainer, good pedagogy.
I'm glad you liked it 😊
Such a great video! I l learned a lot within a short time.
Glad it was helpful!
IN JOINS WHEN THERE ARE COMMON OBSERVATIONS OF MORE THAN 1 IN ON VARIABLES WE WILL GET THE CARTESIAN PRODUCT.
HOW TO HANDLE THAT SITUATION
If have this in the column you are using as key to join the tables, if so then either-
>> please remove the duplicates first and then join
>> Concatenate that column with any other one which is common in both and doesn't have duplicates, that will create unique values and then you can use the same as key var. to join further
@@learnerea YEAH TQ
Very well explained 👍👍👍👍
Thanks for liking
Very nice job!
Great job 👏 ..thank you..
excellent video.
Do you have different types of logic and answers I can use to run and learn? Please! either with Cars or any data set.
check out our newly uploaded videos like - calculating the rolling average... you will get the logical ideas...
Bro, will u please INSERT INTO , ALTER, UPDATE also in PROC SQL , aren't they important in realtime as a SAS Coder.
Amazing video
Glad it was helpful
Nice explanation ❤
Keep watching!
Big thanks for the tutoring!
Hope this was helpful to you in someway
This was fantastic. Thank you very much.
Thankyou for your kind words, happy learning
Please start sdtm videos and tutorial
will try and do it soon
Nice video with one item noted: when the output changes at 31:24, we observe a category value of "toddler" that shows up with no prior code to tag the age category as "toddler". All we had before this was either "kid", "teenage" or "young", based on age. Where is the code to tag "toddler"? Oops.
Alex thanks for highlighting this, we are definitely going to be careful about such mismatches however here the category 'Kids' can be considered as toddler. To note this has nothing to do real life toddler age 😊
Plz uploaded some thing about in clinical trials
Can you make example, on what kind of occasion we use full join?
Maybe, an exhaustive list of all the customers from customer table and trans table for a given month
@@learnerea well,very rare ,but thanks
@@happypotato9644 yeah that's true, not used oftenly
Thanks for your video! it's very helpful! i went to the link and try to download file. could you advise me where can i find the excel file for cars?
You can find cars dataset in sashelp library
That is not an excel file, we cannot read excel file in sas, only sas dataset with extension sas.7bdat can only be accessed on sas interface
Where are the links your taking about in video?
Not sure what link you are exactly looking for. In the description section, the github link for all the excel files is given, same mentioned here againg -
github.com/LEARNEREA/Excel_Files
at the below github link, you can find all of the SAS Scripts and Data used -
github.com/LEARNEREA/SAS
From below, you can download many of the datasets stored in excel -
github.com/LEARNEREA/Excel_Files
let me know in case of any further suggestions needed
You are genius
Thank you very much
You are welcome
Can you please tell Group by and order by difference
Order by is to sort your data either in ascending or descending order while group by is for aggregation of the data with a calculation
great video, thank you so much! Have a question, in sql, we could use LIMIT to select top n observations or rows for a certain column, let's say select top 5 records with math score in each grade, how we get this with sas sql? or we can use this car data, to select top 5 most expensive cars in each car type? In sql, you can use group by type order by msrp, then limit 5, but sas proc sql doesn't have LIMIT function, how we do it in SAS proc sql?
you can use the option "outobs" but that will give you n number of records on overall level and not by each of the group
if you are interested in doing that using data step then what you can do is -
first - sort the data by car type and msrp in descending order
second - create a counter variable by car type (to learn this you can check out the video - th-cam.com/video/8FDkHul0TL0/w-d-xo.html )
third - filter for the rows where counter variable is
Could you pls tell I am using Sum function to get the amount of gross amount for previous month..but I got double amount on same..
can you check your group by statement.. better you put your code here
is this content helpful for clinical SAS ?
Yes it will help
Please create a series of table listing figure
Will do
pls tell the how to remove the duplicate in proc sql
try using, select distinct
So helpful
Glad it was helpful!
Thanks for your videos sir.It helped me a lot.Cant we use IF condition instead of WHERE in proc SQL sir...
Hi Rajesh,
In PROC SQL one can use where clause and having and not the if statement.
'If' condition cannot be used in Procedure i.e. 'Proc' step.
IF then else are used only in data step
@@InsideAnkitasUniverse we can use if condition in one procedure i.e proc report with compute statement
Thanks man
can you explain how to find second highest value in proc sql
for that you can try to create counter using first. in data step
Thank you 🙏
Glad you liked it
How to find Commulative Sum Or Running total Through Proc SQL ?
Hi Suman,
There are certain limitations with Proc SQL as well as with Data Step and that is where we use either of them as an alternate. Therefore you can use data step to calculate the cumulative sum
amboxj hay azge qo heta, shat enq qez sirum u misht hetevum enq qez
How to define sex variable as f = female and m= male in proc SQL program what is the code for that
case when sex = "f" then "female" else "male" end as sex_new_var
you can check out below for detailed explanations -
th-cam.com/video/5v-wtE6dJNU/w-d-xo.html
thank you
super
macros please
Hi Ashok,
Here comes what you have been waiting for long:
th-cam.com/video/i4hu1b9r_Qw/w-d-xo.html
@@learnerea Thank you bro
You teached full join out put wrong
We can discuss the descripancy, please feel free to share it in detail