The First Line in the Above Code Defines a New Variable Called “Anemic”; the Second Line Assigns Everyone a Value of (-) Or No Meaning They Are Not Anemic

Total Page:16

File Type:pdf, Size:1020Kb

The First Line in the Above Code Defines a New Variable Called “Anemic”; the Second Line Assigns Everyone a Value of (-) Or No Meaning They Are Not Anemic The first line in the above code Defines a new variable called “anemic”; the second line assigns everyone a value of (-) or No meaning they are not anemic. The first and second If commands recodes the “anemic” variable to (+) or Yes if they meet the specified criteria for hemoglobin level and sex. A Note to Epi Info DOS users: Using the DOS version of Epi you had to be very careful about using the Recode and If/Then commands to avoid recoding a missing value in the original variable to a code in the new variable. In the Windows version, if the original value is missing, then the new variable will also usually be missing, but always verify this. Always Verify Coding It is recommended that you List the original variable(s) and newly defined variables to make sure the coding worked as you expected. You can also use the Tables and Means command for double-checking the accuracy of the new coding. Use of Else … The Else part of the If command is usually used for categorizing into two groups. An example of the code is below which separates the individuals in the viewEvansCounty data into “younger” and “older” age categories: DEFINE agegroup3 IF AGE<50 THEN agegroup3="Younger" ELSE agegroup3="Older" END Use of Parentheses ( ) For the Assign and If/Then/Else commands, for multiple mathematical signs, you may need to use parentheses. In a command, the order of mathematical operations performed is as follows: Exponentiation (“^”), multiplication (“*”), division (“/”), addition (“+”), and subtraction (“-“). For example, the following command ASSIGNs a value to a new variable called calc_age based on an original variable AGE (in years): ASSIGN calc_age = AGE * 10 / 2 + 20 For example, a 14 year old would have the following calculation: 14 * 10 / 2 + 20 = 90 First, the multiplication is performed (14 * 10 = 140), followed by the division (140 / 2 = 70), and then the addition (70 + 20 = 90). If you wanted the addition to take place (2 + 20) before the multiplication and division, place parentheses around 2 + 20: ASSIGN calc_age = AGE * 10 / (2 + 20) For AGE = 14, the above would result in 6.3636: first, 2 + 20 equals 22; then 14 * 10 = 140, which would then be divided by 22 = 6.3636. It never hurts to insert parentheses for clarity - sometimes leaving them out can lead to unexpected results. 36 Epi Info Exercise 2 – Use of Select, Define, Assign, Recode, and If/Then commands The following questions are based on the viewEvansCounty data. You are interested in performing some analyses only on those with hypertension. In this data file, the variable name is HPT, and those who are hypertensive have the code “Yes.” Use the Select command and answer the following questions: 1. What is the mean cholesterol (variable CHL) for the hypertensive group? 2. What is the risk ratio for the CAT-CHD relationship among those with hypertension? At this point, please Cancel Select. An investigator has developed a new index for predicting coronary heart disease. This index is based on the measure of body size called QTI and cholesterol level (CHL). The index is calculated as: CHD_index = 100 x QTI2/Cholesterol level 3. Create this variable in the data set. What is the mean CHD_index value? 4. Do those who developed CHD have a significantly higher mean CHD_index compared to those who did not develop CHD? Using the Recode command, Recode age to agegroup using by 20-year age intervals: 40-59 and 50-79 years of age. 5. How many individuals are there in the 40-59 year age group and how many in the 60-79 year age group? We would like to use the hematocrit information to classify the men as anemic or not anemic. The cutoff for anemia is a hematocrit <39 for nonsmokers and hematocrit <40 for smokers. The variable name for hematocrit is HEM and the variable name for smoking is SMK and is coded as a “Yes”/”No”. 6. Define a new variable Anemic and use If/Then statements to give a value of 1 if anemic, a value of 2 if not anemic. What is the prevalence of anemia? 7. Save the above Define and If/Then statements into a program file called Anemic in the Sample.mdb file. ReRead viewEvansCounty and Run the program. 37 38 VI. Setting System Defaults Set The user can specify some aspects of how information is presented using the Set command (see Figure 43). For example, for output and the List command, the following top three aspects of the Set command dialog box are: For Yes/No fields, the “Yes” response presented as: “Yes”, “True” or (+) For Yes/No fields, the “No” response presented as: “No”, “False”, or (-) Missing values presented as: “Missing”, “Unknown”, or (.) Figure 43. Set command dialog box, Analyze Data, Epi Info. Show Hyperlinks – when checked, will show hyperlinks to output in the Output window; when not checked, hyperlinks not shown. Show Selection Criteria – when checked, shows the Selection criteria with the output of every subsequent command; when not checked, no selection criteria is shown. Show Percents – when checked, shows row and column percentages for the Tables and Means command; when not checked, these percentages are not shown. Show Tables in Output – when checked, shows tables for Frequencies, Means, Tables, or Match commands; when not checked, tables are not shown. For the Statistics output, you will probably want to set this at “Advanced” to see all the statistics. Include Missing is whether to include missing records in the tables presented in Frequencies and Tables. Process Records – to determine if in the analyses you want only undeleted (“normal”) records, only Deleted records, or both normal and deleted records. 39 40 VII. Advanced Statistics In this section the following advanced statistics commands are described: Linear Regression, Logistic Regression, Kaplan-Meier Survival, Cox Proportional Hazards, and commands for analyzing complex sample designs (Complex Sample Frequencies, Complex Sample Tables, and Complex Sample Means). Linear Regression Linear regression is used when the outcome variable is continuous, such as age, hemoglobin values, and cholesterol. The dialog box for Linear Regression is shown in Figure 44. The Linear Regression command can be used for simple linear-regression and simple correlation (only one independent variable), and for multiple linear regression (more than one independent variable). Regression is where the primary interest is to predict one dependent variable (y) from one or more independent variables (x1, ..., xk). The correlation coefficient or r (sometimes referred to as the Pearson correlation coefficient) is a measure used to determine how two continuous variables are related. If the correlation is greater than 0, the variables are positively correlated; i.e., as x increases, y also increases. If the correlation is less than 0, the variables are negatively correlated; i.e., as x increases, y decreases. If the correlation is exactly 0, then the variables are uncorrelated. The correlation coefficient can vary between +1 and -1. For positive correlations (r > 0), the closer to +1, the stronger the correlation; for negative correlations (r < 0), the closer to -1 the stronger the correlation. As a rule of thumb for interpreting r: 0.9-1, very high correlation; 0.7-0.89, high correlation; 0.5- 0.69, moderate correlation; 0.3-0.49, low correlation; 0.0-0.29, little if any correlation. Figure 44. Linear Regression command dialog box, Analyze Data, Epi Info. Note a slight discrepancy between the command Linear Regression and the name of the dialog box Regress. If the data are ordinal or not normally distributed, significance tests based on the Pearson correlation coefficient may not be valid and a nonparametric equivalent to Pearson’s would be preferable (which is not currently available in Epi Info). The following discusses simple linear regression (only one predictor/independent variable) and multiple linear regression (more than one predictor/independent variable). Simple Linear Regression As an example of simple linear regression, we will use the viewEstriolandBirthweight data which can be found in the Sample.mdb file. These data are from Rosner and are described in Appendix 1. In this example, the Outcome Variable is Birthweight and the Other Variables is Estriol. [Note: In Epi Info version 41 3.3.2 and earlier there is an error in this data file. To obtain the same results as below (and in the textbook by Rosner) in the older version of Epi Info, you will need to correct record 12 where the Birthweight should be 31, not 30. This correction can be made using the List command with its Allow Updates option.] The results of the regression are shown in Figure 45 and some of the output is explained below. Figure 45. Example output of simple linear regression from the Linear Regression command, viewEstriolAndBirthweight data, Epi Info. Linear Regression Variable Coefficient Std Error F-test P-Value Estriol 0.608 0.147 17.1616 0.000286 CONSTANT 21.523 2.620 67.4656 0.000000 Correlation Coefficient: r^2= 0.37 Source df Sum of Squares Mean Square F-statistic Regression 1 250.574 250.574 17.162 Residuals 29 423.426 14.601 Total 30 674.000 (Note: The Correlation Coefficient, frequently referred to as “r”, is not the same as r^2 or r2) Coefficient, Std Error, F-test, and P-value: For the predictor variable, the coefficient value is the slope of the line, sometimes referred to as the “regression coefficient.” In this example, 0.608 can be interpreted as for every one-unit increase in estriol (1 mg/24 hr), there is a 0.608 increase in birth weight units (g/100). Statistics concerning the slope are also provided; the standard error (“Std Error”), which is 0.147, F-test (same as F-Statistic presented lower in the output for simple linear regression), and a P-value, in this example 0.000286.
Recommended publications
  • Patient Safety Culture and Associated Factors Among Health Care Providers in Bale Zone Hospitals, Southeast Ethiopia: an Institutional Based Cross-Sectional Study
    Drug, Healthcare and Patient Safety Dovepress open access to scientific and medical research Open Access Full Text Article ORIGINAL RESEARCH Patient Safety Culture and Associated Factors Among Health Care Providers in Bale Zone Hospitals, Southeast Ethiopia: An Institutional Based Cross-Sectional Study This article was published in the following Dove Press journal: Drug, Healthcare and Patient Safety Musa Kumbi1 Introduction: Patient safety is a serious global public health issue and a critical component of Abduljewad Hussen 1 health care quality. Unsafe patient care is associated with significant morbidity and mortality Abate Lette1 throughout the world. In Ethiopia health system delivery, there is little practical evidence of Shemsu Nuriye2 patient safety culture and associated factors. Therefore, this study aims to assess patient safety Geroma Morka3 culture and associated factors among health care providers in Bale Zone hospitals. Methods: A facility-based cross-sectional study was undertaken using the “Hospital Survey 1 Department of Public Health, Goba on Patient Safety Culture (HSOPSC)” questionnaire. A total of 518 health care providers Referral Hospital, Madda Walabu University, Goba, Ethiopia; 2Department were interviewed. Analysis of variance (ANOVA) was employed to examine statistical of Public Health, College of Health differences between hospitals and patient safety culture dimensions. We also computed Science and Medicine, Wolayta Sodo internal consistency coefficients and exploratory factor analysis. Bivariate and multivariate University, Sodo, Ethiopia; 3Department of Nursing, Goba Referral Hospital, linear regression analyses were performed using SPSS version 20. The level of significance Madda Walabu University, Goba, Ethiopia was established using 95% confidence intervals and a p-value of <0.05. Results: The overall level of patient safety culture was 44% (95% CI: 43.3–44.6) with a response rate of 93.2%.
    [Show full text]
  • Association Between Indoor Air Pollution and Cognitive Impairment Among Adults in Rural Puducherry, South India Yuvaraj Krishnamoorthy, Gokul Sarveswaran, K
    Published online: 2019-09-02 Original Article Association between Indoor Air Pollution and Cognitive Impairment among Adults in Rural Puducherry, South India Yuvaraj Krishnamoorthy, Gokul Sarveswaran, K. Sivaranjini, Manikandanesan Sakthivel, Marie Gilbert Majella, S. Ganesh Kumar Department of Preventive and Background: Recent evidences showed that outdoor air pollution had significant Social Medicine, Jawaharlal influence on cognitive functioning of adults. However, little is known regarding the Institute of Postgraduate Medical Education and association of indoor air pollution with cognitive dysfunction. Hence, the current study was done to assess the association between indoor air pollution and cognitive Research, Puducherry, India Abstract impairment among adults in rural Puducherry. Methodology: A community‑based cross‑sectional study was done among 295 adults residing in rural field practice area of tertiary care institute in Puducherry during February and March 2018. Information regarding sociodemographic profile and household was collected using pretested semi‑structured questionnaire. Mini‑Mental State Examination was done to assess cognitive function. We calculated adjusted prevalence ratios (aPR) to identify the factors associated with cognitive impairment. Results: Among 295 participants, 173 (58.6) were in 30–59 years; 154 (52.2%) were female; and 59 (20.0%) were exposed to indoor air pollution. Prevalence of cognitive impairment in the general population was 11.9% (95% confidence interval [CI]: 8.7–16.1). Prevalence of cognitive impairment among those who were exposed to indoor air pollution was 27.1% (95% CI: 17.4–39.6). Individuals exposed to indoor air pollution (aPR = 2.18, P = 0.003) were found to have two times more chance of having cognitive impairment.
    [Show full text]
  • Antiretroviral Adverse Drug Reactions Pharmacovigilance in Harare City
    bioRxiv preprint doi: https://doi.org/10.1101/358069; this version posted June 28, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 1 Original Manuscript 2 Title: Antiretroviral Adverse Drug Reactions Pharmacovigilance in Harare City, 3 Zimbabwe, 2017 4 Hamufare Mugauri1, Owen Mugurungi2, Tsitsi Juru1, Notion Gombe1, Gerald 5 Shambira1 ,Mufuta Tshimanga1 6 7 1. Department of Community Medicine, University of Zimbabwe 8 2. Ministry of Health and Child Care, Zimbabwe 9 10 Corresponding author: 11 Tsitsi Juru [email protected] 12 Office 3-66 Kaguvi Building, Cnr 4th/Central Avenue 13 University of Zimbabwe, Harare, Zimbabwe 14 Phone: +263 4 792157, Mobile: +263 772 647 465 1 bioRxiv preprint doi: https://doi.org/10.1101/358069; this version posted June 28, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 15 Abstract 16 Introduction: Key to pharmacovigilance is spontaneously reporting all Adverse Drug 17 Reactions (ADR) during post-market surveillance. This facilitates identification and 18 evaluation of previously unreported ADR’s, acknowledging the trade-off between 19 benefits and potential harm of medications. Only 41% ADR’s documented in Harare 20 city clinical records for January to December 2016 were reported to Medicines 21 Control Authority of Zimbabwe (MCAZ).
    [Show full text]
  • Communicable Disease Control in Emergencies: a Field Manual Edited by M
    Communicable disease control in emergencies A field manual Communicable disease control in emergencies A field manual Edited by M.A. Connolly WHO Library Cataloguing-in-Publication Data Communicable disease control in emergencies: a field manual edited by M. A. Connolly. 1.Communicable disease control–methods 2.Emergencies 3.Disease outbreaks–prevention and control 4.Manuals I.Connolly, Máire A. ISBN 92 4 154616 6 (NLM Classification: WA 110) WHO/CDS/2005.27 © World Health Organization, 2005 All rights reserved. The designations employed and the presentation of the material in this publication do not imply the expression of any opinion whatsoever on the pert of the World Health Organization concerning the legal status of any country, territory, city or area or of its authorities, or concerning the delimitation of its frontiers or boundaries. Dotted lines on map represent approximate border lines for which there may not yet be full agreement. The mention of specific companies or of certain manufacturers’ products does not imply that they are endorsed or recommended by the World Health Organization in preference to others of a similar nature that are not mentioned. Errors and omissions excepted, the names of proprietary products are distinguished by initial capital letters. All reasonable precautions have been taken by WHO to verify he information contained in this publication. However, the published material is being distributed without warranty of any kind, either express or implied. The responsibility for the interpretation and use of the material lies with the reader. In no event shall the World Health Organization be liable for damages arising in its use.
    [Show full text]
  • CDC CSELS Division of Public Health
    Center for Surveillance, Epidemiology and Laboratory Services (CSELS) Division of Public Health Information Dissemination (DPHID) The primary mission for the Center for Surveillance, Epidemiology and Laboratory Services (CSELS) is to provide scientific service, expertise, skills, and tools in support of CDC's national efforts to promote health; prevent disease, injury and disability; and prepare for emerging health threats. CSELS has four divisions which represent the tactical arm of CSELS, executing upon CSELS strategic objectives. They are critical to CSELS ability to deliver public health value to CDC in areas such as science, public health practice, education, and data. The four Divisions are: Division of Health Informatics and Surveillance Division of Laboratory Systems Division of Public Health Information Dissemination Division of Scientific Education and Professional Development Applied Public Health Advanced Laboratory Epidemiology The mission of the Division of Public Health Information Dissemination (DPHID) is to serve as a hub for scientific publications, information and library sciences, systematic reviews and recommendations, and public health genomics, thereby collaborating with CDC CIOs and the public health community in producing, disseminating, and implementing evidence-based and actionable information to strengthen public health science and improve public health decision- making. Major Products or Services provided by DEALS include: The American Hospital Association (AHA): AHA Annual Survey and AHA Healthcare IT Survey Data. Contact [email protected] Centers for Medicare & Medicaid Services (CMS) health data coordination - The Centers for Medicare and Medicaid Services (CMS) Virtual Research Data Center (VRDC) is CDC’s Gateway to CMS Data. CMS has developed a new data access model as an option for requesting Medicare and Medicaid data for a broad range of analytic studies.
    [Show full text]
  • Exposure and Body Burden of Environmental Pollution and Risk Of
    Ingela Helmfrid Ingela Linköping University medical dissertations, No. 1699 Exposure and body burden of environmental pollutants and risk of cancer in historically contaminated areas Ingela Helmfrid Exposure and body burden of FACULTY OF MEDICINE AND HEALTH SCIENCES environmental pollutants and risk Linköping University medical dissertations, No. 1699, 2019 of cancer in historically Occupational and Environmental Medicine Center and Department of Clinical and Experimental Medicine contaminated areas Linköping University SE-581 83 Linköping, Sweden www.liu.se 2019 Linköping University Medical Dissertation No. 1699 Exposure and body burden of environmental pollutants and risk of cancer in historically contaminated areas Ingela Helmfrid Occupational and Environmental Medicine Center, and Department of Clinical and Experimental Medicine Linköpings universitet, SE-581 83 Linköping, Sweden Linköping 2019 © Ingela Helmfrid, 2019 Printed in Sweden by LiU-Tryck, Linköping University, 2019 Linköping University medical dissertations, No. 1699 ISSN 0345-0082 ISBN 978-91-7685-006-0 Exposure and body burden of environmental pollutants and risk of cancer in historically contaminated areas By Ingela Helmfrid November 2019 ISBN 978-91-7685-006-0 Linköping University medical dissertations, No. 1699 ISSN 0345-0082 Keywords: Contaminated area, cancer, exposure, metals, POPs, Consumption of local food Occupational and Environmental Medicine Center, and Department of Clinical and Experimental Medicine Linköping University SE-581 83 Linköping, Sweden Preface This thesis is transdisciplinary, integrating toxicology, epidemiology and risk assessment, and involving academic institutions as well as national, regional and local authorities. Systematic and transparent methods for the characterization of human environmental exposure to site-specific pollutants in populations living in historically contaminated areas were used.
    [Show full text]
  • Diagnostic Value of Alpha-Fetoprotein Combined with Neutrophil-To
    Hu et al. BMC Gastroenterology (2018) 18:186 https://doi.org/10.1186/s12876-018-0908-6 RESEARCH ARTICLE Open Access Diagnostic value of alpha-fetoprotein combined with neutrophil-to-lymphocyte ratio for hepatocellular carcinoma Jian Hu1†, Nianyue Wang2†, Yongfeng Yang2,LiMa2, Ruilin Han3, Wei Zhang4, Cunling Yan3*, Yijie Zheng5* and Xiaoqin Wang1* Abstract Background: To investigate the diagnostic performance of alpha-fetoprotein (AFP) and neutrophil-to-lymphocyte ratio (NLR) as well as their combinations with other markers. Methods: Serum aspartate aminotransferase (AST), alanine aminotransferase (ALT), AFP and levels as well as the numbers of neutrophils and lymphocytes of all enrolled patients were collected. The NLR was calculated by dividing the number of neutrophils by the number of lymphocytes. Receiver operating characteristic (ROC) curve analysis was conducted to determine the ability of each marker and combination of markers to distinguish HCC and liver disease patients. Results: In total, 545 patients were included in this study. The area under the ROC curve (AUC) values for AFP, ALT, AST, and NLR were 0.775 (0.738–0.810), 0.504 (0.461–0.547), 0.660 (0.618–0.699), and 0.738 (0.699–0.774) with optimal cut-off values of 24.6 ng/mL, 111 IU/mL, 27 IU/mL, and 2.979, respectively. Of the four biomarkers, AFP and NLR showed comparable specificity (0.881 and 0.858) and sensitivity (0.561 and 0.539). The combination of AFP and NLR showed the highest AUC (0.769) with a significantly higher sensitivity (0.767) and a lower specificity (0.773) compared to AFP or NLR alone, and it had the highest sum of sensitivity and specificity (1.54) among all combinations.
    [Show full text]
  • Epi Info Guide
    Epi Info Guide Data Management and Analysis A PLACE Manual Guide for Using Epi Info Software This guide was made possible by support from the U.S. Agency for International Development (USAID) under terms of Cooperative Agreement GPO-A-00-03-00003-00. The authors’ views expressed in this publication do not necessarily reflect the views of USAID or the United States Government. November 2005 MS-05-13 Epi Info Guide Introduction This technical document provides information you will need to know in order to manage and analyze the data collected during the PLACE assessment, as well as guidance in preparing the data tables used in a PLACE report. It begins with step-by-step instructions for preparing customized data entry screens in Epi Info for each questionnaire, so that data from the Community Informant Questionnaire (Form A), the Venue Verification Form (Form C), and the Questionnaire for Individuals Socializing at Venues (Form D) can be entered, stored, and analyzed in Epi Info. (The Venue and Event Report [Form B] does not require the use of Epi Info.) Instructions are also provided for modifying or creating a simple checking program to ensure that values entered during data entry fall within the parameters of “allowed” response codes. Lastly, instructions are provided to help you prepare the data and perform the analysis necessary to complete a PLACE report, which will summarize the PLACE findings in your priority prevention areas. This document is presented in the same sequence of data management and analysis activities that are used in a PLACE study. Each of the four sections begins with a summary of the instructions that will follow.
    [Show full text]
  • Research a Retrospective Comparison of Dental Hygiene Supervision Changes from 2001 to 2011
    Research A Retrospective Comparison of Dental Hygiene Supervision Changes from 2001 to 2011 April V. Catlett, RDH, BHSA, MDH; Robert Greenlee, PhD Introduction Abstract Several factors contribute to the Purpose: The purpose of this study is to evaluate the extent of poor dental health of low-income change in the professional practice environment for dental hy- populations in the U.S. Some of the gienists in the 50 states and District of Columbia by comparing most significant factors that contrib- the state supervision requirements for dental hygienists during ute to this lack of access to care are a 2001 to 2011 to the previous 7 year period, 1993 to 2000. shortage of dentists, poor participa- Methods: A retrospective comparison evaluation was conduct- tion of dentists in public assistance ed using the 2 tables entitled “Tasks Permitted and Mandat- programs and dental hygiene prac- ed Supervision of Dental Hygienists by State, 1993, 1998 and tice acts.1 The dental hygiene prac- 2000” and “Dental Hygiene Practice Act Overview: Permitted tice act supervision requirements, Functions and Supervision Levels by State.” To score the net dictated by state dental boards, lim- change in supervision, a numerical score was assigned to each it the dental workforce conditions. level of alteration in supervision with a +1 or -1 for each level In 2006, the dentist-to-population of change. ratio in the U.S. was 5.8 dentists per 10,000 residents.1 In May 2010, Results: With a 95% confidence level, the mean change in there were over 25% more dental dental hygiene supervision from 2001 to 2011 was 6.57 with a hygienists as general dentists in the standard deviation of 5.70 (p-value=0.002).
    [Show full text]
  • An Examination of Epidemiological Study Designs in Veterinary Science Jonah Nelson Cullen Iowa State University
    Iowa State University Capstones, Theses and Graduate Theses and Dissertations Dissertations 2016 An examination of epidemiological study designs in veterinary science Jonah Nelson Cullen Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/etd Part of the Epidemiology Commons, and the Veterinary Medicine Commons Recommended Citation Cullen, Jonah Nelson, "An examination of epidemiological study designs in veterinary science" (2016). Graduate Theses and Dissertations. 15687. https://lib.dr.iastate.edu/etd/15687 This Thesis is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Graduate Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. An examination of epidemiological study designs in veterinary science by Jonah N. Cullen A thesis submitted to the graduate faculty in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE Major: Veterinary Preventive Medicine Program of Study Committee: Annette M. O’Connor, Major Professor Duck-chul Lee Kenneth J. Koehler Jeffrey J. Zimmerman Iowa State University Ames, Iowa 2016 Copyright © Jonah N. Cullen, 2016. All rights reserved. ii DEDICATION This thesis is dedicated to my amazing wife Kelly, and always-supportive parents Dan and Jeanne. iii TABLE OF CONTENTS Page ACKNOWLEDGMENTS .......................................................................................
    [Show full text]
  • Epi Info™ 7 User Guide – Chapter 8 - Visual Dashboard
    Epi Info™ 7 User Guide – Chapter 8 - Visual Dashboard Visual Dashboard: Performing Statistical Analyses with Visual Tools Introduction Visual Dashboard is one of the Epi Info™ 7 analysis modules. The Visual Dashboard is designed to be intuitive and simple to use. With the use of gadgets, the need for programming code is minimized. Data can be selected, sorted, listed, or manipulated using the various gadgets in Visual Dashboard. The statistical analyses tools available in Visual Dashboard include frequencies, means, and more advanced statistical calculations (e.g., linear regression and logistic regression). Visual Dashboard has graphing functionality to display data as an Epi Curve, Pareto Chart, and several other bar and column charts. Users can access Visual Dashboard from the Epi Info™ 7 main menu by clicking the Visual Dashboard button, or by selecting Dashboard from the main page menu of Enter once an Epi Info project has been loaded. Figure 8.1: Epi Info™ 7 main menu, with Visual Dashboard button highlighted 8-1 Epi Info™ 7 User Guide – Chapter 8 - Visual Dashboard Navigate the Visual Dashboard Workspace Figure 8.2: Visual Dashboard canvas The Visual Dashboard contains seven areas: the Canvas, the Canvas Display Mode Selector, the Data Source and Record Count Display, the Canvas Output Controls, the Canvas Tools Toolbar, the Defined Variables gadget, and the Data Filters Gadget. 1. The Canvas is the blank space in the center of the Visual Dashboard. It displays output generated by the multiple gadgets available in the tool. The canvas has a function dialog box that appears when a blank space is right-clicked.
    [Show full text]
  • Electronic Data Tools for COVID-19 Surveillance
    COVID-19 Surveillance Webinar Series - June 8, 2020 Electronic Data Tools for COVID-19 Surveillance Michelle Sloan, Division of Global Health Protection Carl Kinkade, Division of Global Health Protection José Aponte, Division of Health Informatics and Surveillance Joel Adegoke, Global Immunization Division James Fuller, Division of Global Health Protection cdc.gov/coronavirus Using Electronic Tools for Health Systems Strengthening . Understand the surveillance goals and objectives . Encourage use of electronic tools currently available in country . Consider resources and skills in country . Leverage available partnerships for implementation and resource sharing . Pick the right tool for the job . Focus on sustainability Benefits of Electronic Data Tools . Timely reporting and communication . Reliable and concise record keeping . Availability of data at multiple health system levels . Completeness of data . Standardized data collection . Faster and improved analysis . Hypothesis generation Choose a Tool that Meets the Surveillance Objectives Note : These are examples of tools that can be used for surveillance. There are many others not included in this presentation, and CDC does not endorse one tool over another. Use of trade names is for identification only and does not imply endorsement by the Centers for Disease Control and Prevention or the U.S. Department of Health and Human Services. District Health Information Software (DHIS2) COVID-19 Package Carl Kinkade Epidemiology, Informatics, Surveillance, and Lab Branch Division of Global
    [Show full text]