Introduction to Stata

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to Stata DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Introduction to Stata Introduction to Stata Introduction to Stata http://www.biostat.ku.dk/~ts/stata-course Klaus K. Holst Thomas Scheike Klaus Kähler Holst 27 Apr 2016 Basic introduction to Stata with an emphasis on data processing and statistical analyses Time plan Course outline 815 – 1130 Lecture & Practicals Apr 27 UI, Data, 1130 – 1215 Lunch Graphics 1215 – 1500 Lectures & Practicals Apr 28 Statistics Practicals Litterature Stata documentation (Access the 11,000+ pages documentation from the Help menu), or browse online: Stata on your own laptops (preferably version 12) ≥ http://www.stata.com/features/documentation/ Datasets available from the homepage http://publicifsv.sund.ku.dk/~ts/stata-course/data Stata journal http://www.stata-journal.com/ http://publicifsv.sund.ku.dk/~kkho/undervisning/data 1 net from http://www.stata-journal.com/software Focus on command stata syntax (via do files) http://www.stata.com/support/faqs/ Reproduciblity! Stata forum: http://www.statalist.org/ http://www.ats.ucla.edu/stat/stata/ . but feel free to explore and learn from the menu-interface (and perhaps discover new functions. Command syntax is also shown SSC http://ideas.repec.org/s/boc/bocode.html and notice "Copy Command to Clipboard") Statistics with Stata: Version 12, Eighth Edition by Lawrence C. Hamilton. Cengage 2013 DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Example session Example session Commands are entered interactively (shell-like) and with a syntax Abbreviations can be used (sum instead of summarize, reg instead not unlike spoken language of regress,. ) 1 use iris 1 sum 2 describe Variable | Obs Mean Std. Dev. Min Max (Edgar Anderson’s Iris Data) -------------+-------------------------------------------------------- Sepal_Length | 150 5.843333 .8280661 4.3 7.9 Contains data from iris.dta Sepal_Width | 150 3.057333 .4358663 2 4.4 obs: 150 Edgar Anderson’s Iris Data Petal_Length | 150 3.758 1.765298 1 6.9 vars: 5 8 Sep 2014 17:32 Petal_Width | 150 1.199333 .7622377 .1 2.5 size: 5,400 Species | 150 2 .8192319 1 3 ------------------------------------------------------------------------------- storage display value 1 correlate Sepal_Length Sepal_Width Petal_Length variable name type format label variable label ------------------------------------------------------------------------------- Sepal_Length double %9.0g Sepal.Length (obs=150) Sepal_Width double %9.0g Sepal.Width Petal_Length double %9.0g Petal.Length | Sepa~gth Sepa~dth Peta~gth Petal_Width double %9.0g Petal.Width -------------+--------------------------- Species long %9.0g Species Species Sepal_Length | 1.0000 ------------------------------------------------------------------------------- Sepal_Width | -0.1176 1.0000 Sorted by: Petal_Length | 0.8718 -0.4284 1.0000 Example session History of statistical computing 1 scatter Sepal_Length Petal_Length if Species==1 SAS Octave 6 JMP R SPSS Fortran Minitab Clojure (Incanter) 5.5 Pascal Genstat (X)Lisp−Stat C++ JavaScript Matlab 5 S−plus Java Stata Sepal.Length Swift Common Lisp Python 4.5 BMDP S B Scheme C Julia 4 Lisp 1 1.2 1.4 1.6 1.8 2 Petal.Length 1957 1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2014 DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN History of statistical computing Stata history Originally built around REPL (Read-Eval-Print-Loop) interface (or runs in batch-mode). SAS Octave 1985: Stata 1.0 release, DOS JMP R SPSS 1986: program Fortran Minitab 1987: anova, logit Clojure (Incanter) Pascal 1988: Stata for UNIX, stcox Genstat (X)Lisp−Stat C++ 1990: Ado-files, reshape JavaScript Matlab 1996: glm, xtreg, xtgee S−plus Java 1999: arima, arch Stata Swift Common Lisp 2003: stata 8: GUI, graphics update, manova Python BMDP 2005: stata 9: Matrix language mata, xtmixed, svyset S B 2012: sem, marginsplot Scheme C Julia 2013: gsem, teffects Lisp 2015: IRT, Bayesian inference, . 1957 1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2014 The Stata Journal (2005) 5, Number 1, pp. 2–18 Stata Stata compared to other computer languages Simple consistent command syntax (REPL or batch) Documentation, support Stata operates on single(!) dataset in memory (spreadsheet implementation) Graphical user-interface Results stored internally (not in user-assigned objects) and Cross-platform (Windows,Mac OS X,Linux) accessed via post-commands Feature rich: http://www.stata.com/features/ Libraries (Ado-files) are loaded automatically User-contributed software Implications are much simpler syntax close to spoken language Stata versions Stata R Stata/MP (Parallel processing) use iris load("iris.rda") Stata/SE (Large data) regress y x l <- lm(y~x,data=iris) Stata/IC (2,000 variables, up to 800 predictors) summary(l) Small Stata Interactive command-line interace on Linux or with SE/MP. DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Stata compared to other computer languages User interface Graphical user-interface Interactive command-line interace on Linux or with SE/MP. Vocabulary: Stata Computer Science Running stata in Batch mode (Command line argument "-b") Advanced users may be prefer to use their own editor (emacs/ESS, notepad++, . ), providing syntax highlighting, Stata syntax Translation completion, interaction with stata console (or batch). do-file script ado-file library Learn to effectively navigate your user-interface. macro "variable" Stata has powerful built-in GUI. variable column,vector,field Data browser/editor program function Graphics interaction function (math) function Help-file browser Do-file editor Follows pretty much Common User Access Standard (CUA). The modifier key under Windows and Linux is ctrl and under Mac OS X (the latter will be used onwards). GUI Command window Commands are entered directly resembling a unix shell (probably more than other matrix REPL languages, you cannot just enter an expression but need to "display"/"echo" the result) Results window 1 display 2+2 + 2 Variable list + 4 Some command shell commands exists 1 pwd Command history Actual shell escape (command: ! or shell) + 3 1 ! convert graph.pdf graph.png ctrl + R and ctrl + B to cycle history. History can be viewed Property Window Input with: #r 10 + 5 + 1 LATEX DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Do files Syntax of Do-files Files with extension .do contains stata scripts. Stata is case sensitive (e.g. CamelCase allowed, also underscore) Reproducible research Use short meaningful (and consistent) names for variables (use Aim towards writing every analysis step in do-files labels to describe in details) You can execute arbitrary many other do files within a Do-file capture prevents stata halting and captures error messages (modular programming) via the command pause debugging of do-files #delimit ; Multi-line statements (not interactively) 1 do dofile C++ like comments nesting of do-calls limited to 64. 1 /* This also works for multiple lines*/ A Do-file may contain just a sequence of commands for doing data 2 // Single line, can also use ’*’(weird) manipulation and regression analysesbut also actual programming elements such as loops (foreach, forvalues, while), branches Comment your code and support with display statements (if, else), functions (program). 1 display as text"{hline 50}" char(13)"{bf: Result}" char(13)"{hline 50}" This allows for complex tasks and reduce repetetive task which is -------------------------------------------------- often error prone an difficult to maintain. Result -------------------------------------------------- Log files Do editor New (Do) file + N or open + O existing file To capture a log of the stata session to a file 1 log using test, replace Every input and output will be captured to the markup language file test.smcl. 1 log close To open in the Viewer Do-file editor + 9 1 view test.smcl Translate to plain ASCII Select region + , 1 translate test.smcl test.log Execute region (lines with just partial mark) ctrl + D , Mac OS X: + + D 1 LATEX 1[[http://www.stata.com/manuals13/gsw13.pdf]] DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Data editor Data editor Data Editor + 8 The data editor provides a nice spreadsheet view of the data and can be accessed via shortcut + 8 or 1 edit Copy-paste works between other spreadsheets (Excel, OpenOffice, and even HTML tables). As a rule of thumb: Do not directly alter data in the data editor! Document you data processing steps in a do-file. Non-destructive view is typically prefered 1 browse Data editor Logical expressions LATEX Filter: Live filtering of the data (non-destructive). Comparison operators: 1 list in 1/5// head a == b true if a equals b 2 list in -10/l// tail a != b true if a not equal to b 3 list if Species==1 a > b true if a greater than b Snapshots: save,restore snapshots of data a >= b true if a greater than or equal to b a < b true if a less than b 1 snapshot save, label("Original data") a <= b true if a less than or equal to b 2 // snapshot list Avoid common mistake of testing equality with single ’=’. snapshot 1 (Original data) created at 19 Sep 2014 10:50 Be Careful of equality checks for floating numbers 1 capture drop if Sepal_Length >1.8 & Species!=1 Logical expressions combined with 2 display_N and expr1 & expr2 50 or expr1 & expr2 negation! expr 1 snapshot restore 1 2 display_N 1 display !(2<3 & 2==3) 150 1 DEPARTMENT OF BIOSTATISTICS UNIVERSITY OF COPENHAGEN Logical expressions Graph We use logical expressions to subset data with the if statement Graph window/editor for conditional constructs + 6 1 assert Sepal_Length>0 1 list if Sepal_Length>6 & Sepal_Width>3.1 & Species==2 +--------------------------------------------------------+ | Sepa~gth Sepa~dth Peta~gth Peta~dth Species | |--------------------------------------------------------| 51. | 7 3.2 4.7 1.4 versicolor | 52. | 6.4 3.2 4.5 1.5 versicolor | 57. | 6.3 3.3 4.7 1.6 versicolor | +--------------------------------------------------------+ 1 regress Sepal_Length Petal_Length if Species==2 Viewer (help) Viewer (help) LATEX Stata has a very extensive well-documented help-system The documentation is available online http://www.stata.com/features/documentation/ and lots of video material accessible from the stata home page.
Recommended publications
  • Curriculum Vitae
    CURRICULUM VITAE Name Ankit Patras Address 111 Agricultural and Biotechnology Building, Department of Agricultural and Environmental Sciences, Tennessee State University, Nashville TN 37209 Phone 615-963-6007, 615-963-6019/6018 Email [email protected], [email protected] EDUCATION 2005- 2009: Ph.D. Biosystems Engineering: School of Biosystems Engineering, College of Engineering & Architecture, Institute of Food and Health, University College Dublin, Ireland. 2005- 2006: Post-graduate certificate (Statistics & Computing): Department of Statistics and Actuarial Science, School of Mathematical Sciences, University College Dublin, Ireland 2003- 2004: Master of Science (Bioprocess Technology): UCD School of Biosystems Engineering, College of Engineering & Architecture, University College Dublin, Ireland 1998- 2002: Bachelor of Technology (Agricultural and Food Engineering): Allahabad Agriculture Institute, India ACADEMIC POSITIONS Assistant Professor, Food Biosciences: Department of Agricultural and Environmental Research, College of Agriculture, Human and Natural Sciences, Tennessee State University, Nashville, Tennessee 2nd Jan, 2014 - Present • Leading a team of scientist and graduate students in developing a world-class food research centre addressing current issues in human health, food safety specially virus, bacterial and mycotoxins contamination • Developing a world-class research program on improving safety of foods and pharmaceuticals • Develop cutting edge technologies (i.e. optical technologies, bioplasma, power Ultrasound,
    [Show full text]
  • Full-Text (PDF)
    Vol. 13(6), pp. 153-162, June 2019 DOI: 10.5897/AJPS2019.1785 Article Number: E69234960993 ISSN 1996-0824 Copyright © 2019 Author(s) retain the copyright of this article African Journal of Plant Science http://www.academicjournals.org/AJPS Full Length Research Paper Adaptability and yield stability of bread wheat (Triticum aestivum) varieties studied using GGE-biplot analysis in the highland environments of South-western Ethiopia Leta Tulu1* and Addishiwot Wondimu2 1National Agricultural Biotechnology Research Centre, P. O. Box 249, Holeta, Ethiopia. 2Department of Plant Sciences, College of Agriculture and Veterinary Science, Ambo University. P. O. Box 19, Ambo, Ethiopia. Received 13 February, 2019; Accepted 11 April, 2019 The objectives of this study were to evaluate released Ethiopian bread wheat varieties for yield stability using the GGE biplot method and identify well adapted and high-yielding genotypes for the highland environments of South-western Ethiopia. Twenty five varieties were evaluated in a randomized complete block design with three replications at Dedo and Gomma during the main cropping season of 2016 and at Dedo, Bedelle, Gomma and Manna during the main cropping season of 2017, generating a total of six environments in location-by-year combinations. Combined analyses of variance for grain yield indicated highly significant (p<0.001) mean squares due to environments, genotypes and genotype-by- environment interaction. Yield data were also analyzed using the GGE (that is, G, genotype + GEI, genotype-by-environment interaction) biplot method. Environment explained 73.2% of the total sum of squares, and genotype and genotype X environment interaction explained 7.16 and 15.8%, correspondingly.
    [Show full text]
  • Multivariate Data Analysis in Sensory and Consumer Science
    MULTIVARIATE DATA ANALYSIS IN SENSORY AND CONSUMER SCIENCE Garmt B. Dijksterhuis, Ph. D. ID-DLO, Institute for Animal Science and Health Food Science Department Lely stad The Netherlands FOOD & NUTRITION PRESS, INC. TRUMBULL, CONNECTICUT 06611 USA MULTIVARIATE DATA ANALYSIS IN SENSORY AND CONSUMER SCIENCE MULTIVARIATE DATA ANALYSIS IN SENSORY AND CONSUMER SCIENCE F NP PUBLICATIONS FOOD SCIENCE AND NUTRITIONIN Books MULTIVARIATE DATA ANALYSIS, G.B. Dijksterhuis NUTRACEUTICALS: DESIGNER FOODS 111, P.A. Lachance DESCRIPTIVE SENSORY ANALYSIS IN PRACTICE, M.C. Gacula, Jr. APPETITE FOR LIFE: AN AUTOBIOGRAPHY, S.A. Goldblith HACCP: MICROBIOLOGICAL SAFETY OF MEAT, J.J. Sheridan er al. OF MICROBES AND MOLECULES: FOOD TECHNOLOGY AT M.I.T., S.A. Goldblith MEAT PRESERVATION, R.G. Cassens S.C. PRESCOlT, PIONEER FOOD TECHNOLOGIST, S.A. Goldblith FOOD CONCEPTS AND PRODUCTS: JUST-IN-TIME DEVELOPMENT, H.R.Moskowitz MICROWAVE FOODS: NEW PRODUCT DEVELOPMENT, R.V. Decareau DESIGN AND ANALYSIS OF SENSORY OPTIMIZATION, M.C. Gacula, Jr. NUTRIENT ADDITIONS TO FOOD, J.C. Bauernfeind and P.A. Lachance NITRITE-CURED MEAT, R.G. Cassens POTENTIAL FOR NUTRITIONAL MODULATION OF AGING, D.K. Ingram ef al. CONTROLLEDlMODIFIED ATMOSPHERENACUUM PACKAGING, A. L. Brody NUTRITIONAL STATUS ASSESSMENT OF THE INDIVIDUAL, G.E. Livingston QUALITY ASSURANCE OF FOODS, J.E. Stauffer SCIENCE OF MEAT & MEAT PRODUCTS, 3RD ED., J.F. Price and B.S. Schweigert HANDBOOK OF FOOD COLORANT PATENTS, F.J. Francis ROLE OF CHEMISTRY IN PROCESSED FOODS, O.R. Fennema et al. NEW DIRECTIONS FOR PRODUCT TESTING OF FOODS, H.R. Moskowitz ENVIRONMENTAL ASPECTS OF CANCER: ROLE OF FOODS, E.L. Wynder et al.
    [Show full text]
  • Relevance of Eating Pattern for Selection of Growing Pigs
    RELEVANCE OF EATING PATTERN FOR SELECTION OF GROWING PIGS CENTRALE LANDB OUW CA TA LO GU S 0000 0489 0824 Promotoren: Dr. ir. E.W. Brascamp Hoogleraar in de Veefokkerij Dr. ir. M.W.A. Verstegen Buitengewoon hoogleraar op het vakgebied van de Veevoeding, in het bijzonder de voeding van de eenmagigen L.C.M, de Haer RELEVANCE OFEATIN G PATTERN FOR SELECTION OFGROWIN G PIGS Proefschrift ter verkrijging van de graad van doctor in de landbouw- en milieuwetenschappen, op gezag van de rector magnificus, dr. H.C. van der Plas, in het openbaar te verdedigen op maandag 13 april 1992 des namiddags te vier uur in de aula van de Landbouwuniversiteit te Wageningen m st/eic/, u<*p' Cover design: L.J.A. de Haer BIBLIOTHEEK! LANDBOUWUNIVERSIIBtt WAGENINGEM De Haer, L.C.M., 1992. Relevance of eating pattern for selection of growing pigs (Belang van het voeropnamepatroon voor de selektie van groeiende varkens). In this thesis investigations were directed at the consequences of testing future breeding pigs in group housing, with individual feed intake recording. Subjects to be addressed were: the effect of housing system on feed intake pattern and performance, relationships between feed intake pattern and performance and genetic aspects of the feed intake pattern. Housing system significantly influenced feed intake pattern, digestibility of feed, growth rate and feed conversion. Through effects on level of activity and digestibility, frequency of eating and daily eating time were negatively related with efficiency of production. Meal size and rate of feed intake were positively related with growth rate and backfat thickness.
    [Show full text]
  • General Linear Models - Part II
    Introduction to General and Generalized Linear Models General Linear Models - part II Henrik Madsen Poul Thyregod Informatics and Mathematical Modelling Technical University of Denmark DK-2800 Kgs. Lyngby October 2010 Henrik Madsen Poul Thyregod (IMM-DTU) Chapman & Hall October 2010 1 / 32 Today Test for model reduction Type I/III SSQ Collinearity Inference on individual parameters Confidence intervals Prediction intervals Residual analysis Henrik Madsen Poul Thyregod (IMM-DTU) Chapman & Hall October 2010 2 / 32 Tests for model reduction Assume that a rather comprehensive model (a sufficient model) H1 has been formulated. Initial investigation has demonstrated that at least some of the terms in the model are needed to explain the variation in the response. The next step is to investigate whether the model may be reduced to a simpler model (corresponding to a smaller subspace),. That is we need to test whether all the terms are necessary. Henrik Madsen Poul Thyregod (IMM-DTU) Chapman & Hall October 2010 3 / 32 Successive testing, type I partition Sometimes the practical problem to be solved by itself suggests a chain of hypothesis, one being a sub-hypothesis of the other. In other cases, the statistician will establish the chain using the general rule that more complicated terms (e.g. interactions) should be removed before simpler terms. In the case of a classical GLM, such a chain of hypotheses n corresponds to a sequence of linear parameter-spaces, Ωi ⊂ R , one being a subspace of the other. n R ⊆ ΩM ⊂ ::: ⊂ Ω2 ⊂ Ω1 ⊂ R ; where Hi : µ 2
    [Show full text]
  • Introducing SPM® Infrastructure
    Introducing SPM® Infrastructure © 2019 Minitab, LLC. All Rights Reserved. Minitab®, SPM®, SPM Salford Predictive Modeler®, Salford Predictive Modeler®, Random Forests®, CART®, TreeNet®, MARS®, RuleLearner®, and the Minitab logo are registered trademarks of Minitab, LLC. in the United States and other countries. Additional trademarks of Minitab, LLC. can be found at www.minitab.com. All other marks referenced remain the property of their respective owners. Salford Predictive Modeler® Introducing SPM® Infrastructure Introducing SPM® Infrastructure The SPM® application is structured around major predictive analysis scenarios. In general, the workflow of the application can be described as follows. Bring data for analysis to the application. Research the data, if needed. Configure and build a predictive analytics model. Review the results of the run. Discover the model that captures valuable insight about the data. Score the model. For example, you could simulate future events. Export the model to a format other systems can consume. This could be PMML or executable code in a mainstream or specialized programming language. Document the analysis. The nature of predictive analysis methods you use and the nature of the data itself could dictate particular unique steps in the scenario. Some actions and mechanisms, though, are common. For any analysis you need to bring the data in and get some understanding of it. When reviewing the results of the modeling and preparing documentation, you can make use of special features embedded into charts and grids. While we make sure to offer a display to visualize particular results, there’s always a Summary window that brings you a standard set of results represented the same familiar way throughout the application.
    [Show full text]
  • Measuring the Outcome of Psychiatric Care Using Clinical Case Notes
    MEASURING THE OUTCOME OF PSYCHIATRIC CARE USING CLINICAL CASE NOTES Marco Akerman MD, MSc A report submitted as part of the requirements for the degree of Doctor of Philosophy in the Faculty of Medicine, University of London Department of Epidemiology and Public Health University College London 1993 ProQuest Number: 10016721 All rights reserved INFORMATION TO ALL USERS The quality of this reproduction is dependent upon the quality of the copy submitted. In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion. uest. ProQuest 10016721 Published by ProQuest LLC(2016). Copyright of the Dissertation is held by the Author. All rights reserved. This work is protected against unauthorized copying under Title 17, United States Code. Microform Edition © ProQuest LLC. ProQuest LLC 789 East Eisenhower Parkway P.O. Box 1346 Ann Arbor, Ml 48106-1346 ABSTRACT This thesis addresses the question: ‘Can case notes be used to measure the outcome of psychiatric treatment?’ Patient’s case notes from three psychiatric units (two in-patient and one day hospital) serving Camden, London (N=225) and two units (one in-patient and one day- hospital) in Manchester (N=34) were used to assess outcome information of psychiatric care in tenns of availability (are comparable data present for both admission and discharge?), reliability (can this data be reliably extracted?), and validity (are the data true measures?). Differences in outcome between units and between diagnostic groups were considered in order to explore the possibility of auditing the outcome of routine psychiatric treatment using case notes.
    [Show full text]
  • Types of Sums of Squares
    Types of Sums of Squares With flexibility (especially unbalanced designs) and expansion in mind, this ANOVA package was implemented with general linear model (GLM) approach. There are different ways to quantify factors (categorical variables) by assigning the values of a nominal or ordinal variable, but we adopt binary coding for each factor level and all applicable interactions into dummy (indicator) variables. An ANOVA can be written as a general linear model: Y = b0 + b1X1 + b2X2 + ... + bkXk+e With matrix notation, it is reduced to a simple form Y = Xb + e The design matrix for a 2-way ANOVA with factorial design 2X3 looks like Data Design Matrix A B A*B A B A1 A2 B1 B2 B3 A1B1 A1B2 A1B3 A2B1 A2B2 A2B3 1 1 1 1 0 1 0 0 1 0 0 0 0 0 1 2 1 1 0 0 1 0 0 1 0 0 0 0 1 3 1 1 0 0 0 1 0 0 1 0 0 0 2 1 1 0 1 1 0 0 0 0 0 1 0 0 2 2 1 0 1 0 1 0 0 0 0 0 1 0 2 3 1 0 1 0 0 1 0 0 0 0 0 1 After removing an effect of a factor or an interaction from the above full model (deleting some columns from matrix X), we obtain the increased error due to the removal as a measure of the effect. And the ratio of this measure relative to some overall error gives an F value, revealing the significance of the effect.
    [Show full text]
  • Chapter 1: Introduction
    GEO4-4420 Stochastic Hydrology Prof. dr. Marc F.P. Bierkens Department of Physical Geography Utrecht University 2 Contents 1. Introduction 5 2. Descriptive statistics 15 3. Probablity and random variables 27 4. Hydrological statistics and extremes 51 5. Random functions 71 6. Time series analysis (by Martin Knotters, Alterra) 97 7. Geostatistics 117 8. Forward stochastic modelling 147 9. State estimation and data-assimilation (handouts) 183 References 185 3 4 Chapter 1: Introduction 1.1 Why stochastic hydrology? The term “stochastic” derives from the Greek word στοχαστιχηζ which is translated with “a person who forecasts a future event in the sense of aiming at the truth”, that is a seer or soothsayer. So, “stochastic” refers to predicting the future. In the modern sense “stochastic” in stochastic methods refers to the random element incorporated in these methods. Stochastic methods thus aim at predicting the value of some variable at non- observed times or at non-observed locations, while also stating how uncertain we are when making these predictions. But why should we care so much about the uncertainty associated with our predictions? The following example (Figure 1.1) shows a time series of observed water table elevations in a piezometer and the outcome of a groundwater model at this location. Also plotted are the differences (residuals) between the data and the model results. We can observe two features. First, the model time series seems to vary more smoothly then the observations. Secondly, there are noisy differences between model results and observations. These differences, which are called residuals, have among others the following causes: • observation errors.
    [Show full text]
  • Evaluation of Left Ventricular Diastolic Dysfunction in Type Ii Diabetes
    DOI: 10.14260/jemds/2014/2222 ORIGINAL ARTICLE EVALUATION OF LEFT VENTRICULAR DIASTOLIC DYSFUNCTION IN TYPE II DIABETES MELLITUS – THE ROLE OF VALSALVA MANEUVER Uday G1, Jayakumar S2, Jnaneshwari M3, Arun Kumar N4 HOW TO CITE THIS ARTICLE: Uday G, Jayakumar S, Jnaneshwari M, Arun Kumar N. “Evaluation of Left Ventricular Diastolic Dysfunction in Type II Diabetes Mellitus – The Role of Valsalva Maneuver”. Journal of Evolution of Medical and Dental Sciences 2014; Vol. 3, Issue 11, March 17; Page: 2898-2906, DOI: 10.14260/jemds/2014/2222 ABSTRACT: BACKGROUND & OBJECTIVES: Left ventricular diastolic dysfunction is known to occur in early stages of diabetic cardiomyopathy but its exact prevalence is not known. The present study was conducted to assess the prevalence of diastolic dysfunction in diabetic patients in the absence of hypertension or CAD. The role of valsalva maneuver in diagnosis of diastolic dysfunction was also studied. AIMS: To study left ventricular diastolic dysfunction in asymptomatic normotensive patients with Type 2 Diabetes. To study the role of valsalva maneuver in diagnosing diastolic dysfunction. METHODOLOGY: 100 consecutive asymptomatic normotensive patients (mean age 52.34 ±8.6 yrs.) with Type 2 diabetes free of any major clinical diabetic complications and having no evidence of CAD on non-invasive testing were studied for LV diastolic functions, using pulsed Doppler at the tip of mitral valve. The peak velocities of LV filling during the early rapid (E wave) and atrial contraction (A wave) phases, the ratio of the 2 filling velocities (E/A ratio) were recorded at end expiration at baseline and again during phase II of valsalva maneuver.
    [Show full text]
  • Use of Statistical Packages for Designing and Analysis of Experiments in Agriculture Latika Sharma and Nitu Mehta* (Ranka) Dept
    Popular Article Popular Kheti Volume -2, Issue-1 (January-March), 2014 Available online at www.popularkheti.info © 2014 popularkheti.info ISSN:2321-0001 Use of Statistical Packages for Designing and Analysis of Experiments in Agriculture Latika Sharma and Nitu Mehta* (Ranka) Dept. of Agricultural Economics & Management, Rajasthan College of Agriculture, MPUAT, Udaipur-313001, India *Email of corresponding author: [email protected] As long as analysis of data generated is concerned there are many statistical software packages that come very handy. But as far as generation of design is concerned there are not many software packages available for this purpose. And when we talk of generation of the design, we mean an algorithm that is capable of generating the design already available in the literature. Using computer algorithms, it has not been possible to generate new designs. This is an open area of research. So the purpose of the present article is to give an exposure to various statistical software packages that are useful for designing and analysis of experiments. Introduction Statistical Science is concerned with the twin aspect of theory of design of experiments and sample surveys and drawing valid inferences there from using various statistical techniques/methods. The art of drawing valid conclusions depends on how the data have been collected and analyzed. Depending upon the objective of the study, one has to choose an appropriate statistical procedure to test the hypothesis. When the number of observations is large or when the researcher is interested in multifarious aspects or some time series study, such calculations are very tedious and time consuming on a desk calculator.
    [Show full text]
  • Assessment of the Effects of Liquid and Granular Fertilizers on Maize Yield in Rwanda
    Afr. J. Food Agric. Nutr. Dev. 2021; 21(3): 17787-17800 https://doi.org/10.18697/ajfand.98.19670 ASSESSMENT OF THE EFFECTS OF LIQUID AND GRANULAR FERTILIZERS ON MAIZE YIELD IN RWANDA Hatungimana JC1*, Srinivasan RT1 and RR Vetukuri2 Hatungimana Jean Claude *Corresponding author email: [email protected] 1Department of Crop Science, School of Agriculture and Food Science, College of Agriculture and Veterinary Medicine, University of Rwanda (UR - CAVM), Rwanda 2Department of Plant Breeding, Swedish University of Agricultural Sciences (SLU), Sweden https://doi.org/10.18697/ajfand.98.19670 17787 ABSTRACT Maize (Zea mays L.) is the most widely grown cereal in the world, accounting for 1,116.34 MT of production in 2019/2020. In Africa, this crop represented approximately 56% of the total cultivated area from 1990 to 2005. About 50% of the African population depends on maize as a staple food and source of carbohydrates, protein, iron, vitamin B, and minerals. Lately, maize has become a cash crop which contributes to the improvement of farmers' livelihoods. For example, the Strategic Plan for Agricultural Transformation (SPAT) III outlined that fertilizer availability in Rwanda should increase to 55,000 MT per year, while fertilizer use should increase from 30 kg/ha in 2013 to 45 kg/ha for the 2017/18 cropping season. Only inorganic fertilizers are currently being used in maize production in Rwanda. This research was conducted to assess the effects of liquid (CBX: Complete Biological Extract) and granular fertilizers on maize crop yields in Rwanda. The study was conducted in the fields of the Rwanda Agriculture and Animal Resources Development Board (Rubona Station) during the 2018/2019 cropping season.
    [Show full text]