Skip to content

Instantly share code, notes, and snippets.

View mepsrajput's full-sized avatar
🎯
Focusing

Pradeep Singh mepsrajput

🎯
Focusing
View GitHub Profile
/* freq procedure with multiple variables */
proc freq data=hgrosser;
tables GENRE MOVIE;
run;
from IPython.display import display
def multiFreq(dataset, variable_list):
for i in variable_list:
datax = dataset[f'{i}'].value_counts()
datay = pd.DataFrame({
f'{i}': datax.index,
'Frequency': datax.values,
'Percent': ((datax.values/datax.values.sum())*100).round(2),
'Cumulative Frequency': datax.values.cumsum(),
title "Simple proc means";
/* Simple proc means */
PROC MEANS DATA=SASHELP.CARS;
RUN;
title "Select the required variables & drop the labels";
/* Select the variables & drop the labels */
PROC MEANS DATA=SASHELP.CARS nolabels;
var