

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The stages of a research project, including the identification of the problem and hypothesis development, data collection and analysis, interpretation of results, and policy recommendation. Additionally, it covers data frequency and time period definitions, as well as sas codes for removing duplicate variables, sorting data, and removing duplicate observations. Outliers and variable coding are also discussed.
Typology: Quizzes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


TERM 1
DEFINITION 1
DEFINITION 2 Annually Monthly Daily Intra-day (minute) TERM 3
DEFINITION 3 1 month 1 quarter 1 year 10 years etc TERM 4
DEFINITION 4 Option NODUPKEY deletes those observations with duplicate BY variable (in our case: Company) values.PROC SORT data=work.sample nodupkey;BY Company;RUN; TERM 5
DEFINITION 5 PROC SORT data=work.sample;BY Company;RUN;
TERM 6
DEFINITION 6 PROC SORT data=work.sample nodup; BY Company; RUN; Option NODUP deletes duplicated observations. TERM 7
DEFINITION 7
DEFINITION 8 For example, if in quantitive analysis, one needs to analyze the impact of gender, one should code the variable gender: 1 if gender is female and 0 if gender is male.