Nice videos Sir .. we learnt alot from your videos...
@bharatsingh-fu4rx11 ай бұрын
Excellent, please make more videos like this.
@jayasrikolli-y4n11 ай бұрын
Good questions. Please do more practical questions .
@riteshchivate927011 ай бұрын
Really good questions sir, would love more similar once
@AshokKumar.676711 ай бұрын
Nice vid0es🙏👍❤🎉
@shyamcathe184410 ай бұрын
proc sql; create table grouped_data as select ceil(ball/6) as over, sum(coalesce(run, 0)) as total_run from ungrouped_data group by ceil(ball/6); quit;
@harsharani619410 ай бұрын
use unique funtion to expected output ---- unique(ceil(ball/6))as over,
@rohitsharma-hz2sf11 ай бұрын
Can you make a video on sas macros practical experience wise questions
@sasworld202111 ай бұрын
Sure
@dineshaavula9538 ай бұрын
Data new (keep=j cnt rename=(cnt=runs j=over)); X=6; DO J=1 to nobs; Do i=1 to x; Set old nobs=nobs; Cnt+runs; If i=x then output; If i=1 then cnt=0; End; End; Run;
@PHARMAINTERVIEWSnm9 ай бұрын
proc sql; create table total_run as select ceil(ball/6) as over, sum(run) as runs from ds group by over; quit;
@asheermohammad39203 ай бұрын
what is the function of ceil here explain ?
@vitthalsharma427511 ай бұрын
Excellent sir what is a roadmap to clear SAS interview for experience individuals
@sasworld202111 ай бұрын
Kindly set up a sas interview session and I will guide you.
@SantySimbaVlogs11 ай бұрын
proc format; value balls 1-6="1 over" 7-12="2 over" 13-18="3 over"; run; proc means data=cricket sum; class balls; var runs; format balls balls.; run;
@sasworld202111 ай бұрын
Good Attempt. However suppose if balls are 600 then you have to hardcode 100 overs in formats. So this approach will not work dynamically, as total balls can be changed. So try solving this using only one data step. You can use underscore N underscore with combination of mod function.
@SantySimbaVlogs10 ай бұрын
@@sasworld2021 how about this proc sql; create table have as select ceil(balls/6) as overs, sum(runs) as runs from cricket group by ceil(balls/6); quit; data have2; set have; by overs; if first.overs then output; run;
@geddadavarma671510 ай бұрын
pls share solution for the Q4 using macros
@Jaisrikrishna98010 ай бұрын
Can you do vedio on sas9.4 installation for windows
@sasworld202110 ай бұрын
Already have one. Please check.
@ipankajnegi11 ай бұрын
data want; set given; if _n_
@sasworld202111 ай бұрын
Very good
@bushanrajput738311 ай бұрын
Hii sir
@sasworld202111 ай бұрын
Hi
@jayasrikolli-y4n10 ай бұрын
can some one tell what is the result of the below: %let a=b; %let b=c; %let c=d; %let d=e; %let e=f; %put &&&&&a;
@parvsharma876710 ай бұрын
c hoga
@khalidraza843810 ай бұрын
F
@parulsingh16979 ай бұрын
63, If u want &a in the last step.
@parvsharma87679 ай бұрын
@@parulsingh1697 63 Kha s aa gya?
@parulsingh16979 ай бұрын
@@parvsharma8767 I thought u r asking how many '& ' will be required to get %a at last ..... for this question ans will be 'c'.
@PradeepSingh-ho5ju5 ай бұрын
SELECT over_number, SUM(runs_scored) AS total_runs FROM your_table_name GROUP BY over_number ORDER BY over_number;
@rushikeshmuthane52499 ай бұрын
data x; set y ; over = ceil (ball/6) ; run; proc sql; create table new as select over, sum(run) as total_run from x group by over ; quit;