SAS Data Analysis Techniques: Print, Freq, Pie Chart, T-test, Histogram, Quizzes of Introduction to Database Management Systems

An overview of various sas techniques used for data analysis, including proc print, freq, pie chart, t-test, and histogram. Students will learn how to use these methods to explore and understand data sets, compute frequencies, create visual representations, and perform statistical tests.

Typology: Quizzes

2017/2018

Uploaded on 09/03/2018

koofers-user-tiu-1
koofers-user-tiu-1 🇺🇸

9 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
TERM 1
SAS "looking at data"
DEFINITION 1
PROC PRINT DATA=car_data(obs=20);RUN;
TERM 2
SAS "Frequency"
DEFINITION 2
proc freq data=work.car_data;tables origin;run;computes a
two way table
TERM 3
SAS "pie chart"
DEFINITION 3
proc gchart data=work.car_data;PIE origin /
type=percent;run;
TERM 4
SAS "T-test"
DEFINITION 4
proc ttest data=work.car_data;class origin_usa;var
discount;run;
TERM 5
SAS "Histogram"
DEFINITION 5
proc sgplot data=work.car_data;histogram discount;run;
pf2

Partial preview of the text

Download SAS Data Analysis Techniques: Print, Freq, Pie Chart, T-test, Histogram and more Quizzes Introduction to Database Management Systems in PDF only on Docsity!

TERM 1

SAS "looking at data"

DEFINITION 1

PROC PRINT DATA=car_data(obs=20);RUN;

TERM 2

SAS "Frequency"

DEFINITION 2

proc freq data=work.car_data;tables origin;run;computes a

two way table

TERM 3

SAS "pie chart"

DEFINITION 3

proc gchart data=work.car_data;PIE origin /

type=percent;run;

TERM 4

SAS "T-test"

DEFINITION 4

proc ttest data=work.car_data;class origin_usa;var

discount;run;

TERM 5

SAS "Histogram"

DEFINITION 5

proc sgplot data=work.car_data;histogram discount;run;

TERM 6

SAS "Satter plot"

DEFINITION 6

proc gplot data=work.car_data;title Scatter plot of car length

and discount;plot length* discount=1;run;