logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Georgee BlackbridgeData mining
(5/5)

976 Answers

Hire Me
expert
StatAnalytica ExpertStatistics
(5/5)

744 Answers

Hire Me
expert
Willard BoiceGeneral article writing
(5/5)

826 Answers

Hire Me
expert
Romesh RanganathanCriminology
(5/5)

786 Answers

Hire Me
Statistics & Analysis

Your written Portfolio Project should meet the following requirements provide at least two paragraphs of detailed information about the project,

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Portfolio project requirements

Your written Portfolio Project should meet the following requirements:

 

  • Provide at least two paragraphs of detailed information about the project, the site, and the dataset used.

  • Provide the code with your modification comments.

  • Include screenshots from the execution.

  • Add code to generate SAS summary statistics

  • Add code to generate Hypotheses for a two-sample t test

  • Include screenshots from the output result.

  • Provide SAS code

  • You will produce a seven- to ten-page report documenting your actions on data, findings, and what you did to get this project completed.

 

You will get the SAS code examples at: https://github.com/HHS-AHRQ/MEPS/tree/master/SAS#sas-examples and the data files from the U.S. Department of Health & Human Services at: https://meps.ahrq.gov/mepsweb/data_stats/download_data_files.jsp

 

The SAS data file is h192.SSP

The Code file that needs to be modified to meet the above requirements is pasted below.

 

/*****************************************************************************/

/* Accessibility and quality of care, 2016

/*

/* Children with dental care

/*

/* Example SAS code to replicate number and percentage of children with dental

/*  care, by poverty status

/*

/* Input file: C:\MEPS\h192.ssp (2016 full-year consolidated)

/*****************************************************************************/

 

ods graphics off;

 

/* Load FYC file *************************************************************/

 

FILENAME h192 "C:\MEPS\h192.ssp";

proc xcopy in = h192 out = WORK IMPORT;

run;

 

/* Define variables **********************************************************/

/*  - For 1996-2007, AGELAST must be created from AGEyyX, AGE42X, AGE31X     */

/*  - For 1996, use 'POVCAT' instead of 'POVCAT96'                           */

 

data MEPS;

                SET h192;

 

 /* Children receiving dental care */

                child_2to17 = (1 < AGELAST & AGELAST < 18)*1;

                child_dental = ((DVTOT16 > 0) & (child_2to17 = 1))*1;

run;

 

proc format;

  value child_dental

                  1 = "One or more dental visits"

                  0 = "No dental visits in past year";

 

  value POVCAT

                  1 = "Negative or poor"

                  2 = "Near-poor"

                  3 = "Low income"

                  4 = "Middle income"

                  5 = "High income";

run;

 

/* Calculate estimates using survey procedures *******************************/

 

ods output CrossTabs = out;

proc surveyfreq data = MEPS missing;

                FORMAT child_dental child_dental. POVCAT16 POVCAT.;

                STRATA VARSTR;

                CLUSTER VARPSU;

                WEIGHT PERWT16F;

                TABLES child_2to17*POVCAT16*child_dental / row;

run;

 

proc print data = out noobs label;

                where child_2to17 = 1 and child_dental ne . and POVCAT16 ne .;

                var child_dental POVCAT16 WgtFreq StdDev RowPercent RowStdErr;

run;

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme