The ExactNumCI Package Document. A Technical Document. written by DEQIANG SUN. Baylor College of Medicine. June 12, For ExactNumCI v1.2.

Size: px
Start display at page:

Download "The ExactNumCI Package Document. A Technical Document. written by DEQIANG SUN. Baylor College of Medicine. June 12, For ExactNumCI v1.2."

Transcription

1 The ExactNumCI Package Document A Technical Document written by DEQIANG SUN Baylor College of Medicine June 12, 2013 For ExactNumCI v1.2.1 Contact: deqiangs@bcm.edu

2 ii Abstract ExactNumCI: Exact Numerical Confidence Interval for Binomial Proportions Keywords: Bioinformatics, Biostatistics, Methylation, Hydroxymethylation, Binomial Proportion, Exact Confidence Interval The package ExactNumCI, available in C++ and R, provides EXACT numerical modeling for inference of Binomial Proportions. In addition it calculates the Confidence Interval (CI) for single binomial proportion, CI for difference of two binomial proportions, and CI for difference of difference. In terms of EXACT, its result is only restrained by numerical precision tolerance but not by any assumption or approximation. The method is directly applied in DNA methylation and hydroxymethylation digital analysis, for example in package MOABS.

3 1 TABLE OF CONTENTS CHAPTER Page 1 OVERVIEW Introduction Summary of available tools Implementation and algorithmic approach License and Availability Cite ExactNumCI Contact INSTALLATION Installation of C++ version Installation of R version MANUAL Usage In R Usage of C++ binaries MISC News REFERENCES

4 2 CHAPTER 1 OVERVIEW 1. Introduction The development was motivated by a need of exact calculation of confidence interval between two methylation ratios in bioinformatics analysis of high throughput whole genome bisulfite sequencing data. For more details of the methods please refer to the Chapter??. The package ExactNumCI, available in C++ and R, provides EXACT numerical modeling for inference of Binomial Proportions. In addition it calculates the Confidence Interval (CI) for single binomial proportion, CI for difference of two binomial proportions, and CI for difference of difference. In terms of EXACT, its result is only restrained by numerical precision tolerance but not by any assumption or approximation. The method is directly applied in DNA methylation and hydroxymethylation digital analysis, for example in package MOABS. 2. Summary of available tools There are 4 major functions available from R version. singleci(k, n) gives the CI for binomial proportion given (k, n). pdiff(k 1, n 1, k 2, n 2, d)

5 3 gives the probability that the difference of p 1 from p 2 is greater than d. pdiffci(k 1, n 1, k 2, n 2 ) gives the CI for difference of two binomial proportions given (k 1, n 1, k 2, n 2 ). dodci(k 1, n 1, k 2, n 2, K 1, N 1, K 2, N 2 ) gives the CI for difference of difference (p 1 p 2 ) (P 1 P 2 ). At default, a uniform priori distribution of p is assumed. You may also specify the priori distribution parameter α 0, β 0 by assuming p follows a nonuniform beta distribution beta( 0, β 0 ). 3. Implementation and algorithmic approach ExactNumCI was first implemented in C++ and makes extensive use of data structures and fundamental algorithms from the BOOST and Numerical Recipes (NR) libraries. It s then ported to R through Dirk Eddelbuettel s excellent Rcpp library. 4. License and Availability ExactNumCI (both C++ and R versions) is freely available under a GNU GPL v2 at google code site If you want to use the C++ sources in your project or want to calculate the CI in the Linux/Windows terminal, you may download the C++ sources at We also find it convenient to have the same capability in R terminal. We published the R package ExactNumCI through CRAN at

6 4 5. Cite ExactNumCI To be updated. 6. Contact The C++ package is developed by Deqiang Sun. The R package is developped by DEQIANG SUN and Hyun Jung Park. Please post any questions, suggestions or problems to the exactnumci google group or send to Deqiang Sun at exactnumci@googlegroups.com. You are welcome to subscribe to the exactnumci google group for updates.

7 5 CHAPTER 2 INSTALLATION The C++ version and R version are made independent of each other, though the sources are mostly common. You may install only C++ version, or only R version, or both. 1. Installation of C++ version Make sure your system (Linux/Windows/MacOS) has the environment variable BOOST ROOT correctly set. For example if your BOOST include file is in /share/boost /include/, then you need execute the command export BOOST ROOT=/share/boost Since it only uses the header files from BOOST, you do not have to build BOOST for installation of ExactNumCI. Commands for installation under Linux/Windows terminal: wget tar -zxvf ExactNumCI-v1.2.1.tar.gz cd ExactNumCI-v1.2.1/ make 2. Installation of R version Since the R package is just a call of C++ sources through the R package Rcpp, your R need have Rcpp installed. You may download the binaries for Windows or Mac from CRAN. You may also compile the sources

8 6 Commands for installation under Linux/Windows terminal: wget tar.gz R CMD INSTALL ExactNumCI tar.gz Or you can install through the R terminal: install.packages( ExactNumCI,dependencies=TRUE)

9 7 CHAPTER 3 MANUAL Reference manual for R package is available at For the example inclusion of sources in other projects, please refer to the MOABS project. 1. Usage In R The function singleci(k, n, α, method) returns the confidence interval of the binomial proportion at observance of the number of success k, the number of trials n, the significance level α, and the specified method of boundary condition. The binomial proportion p follows a Beta distribution Be(p; k +1, n k +1) under a uniform priori. By specifying the area under curve to be 1 α and the method 1 for boundary condition (minimal length of CI), the confidence interval of p is calculated. The parameter method 1 is the only currently implemented method. Setting α = 0.05 returns the commonly used 95% CI. > library(exactnumci) > singleci( 5, 10, 0.05,1) $a [1] $b [1]

10 8 > singleci( 2, 10, 0.05,1) $a [1] 0 $b [1] The function pdiff(k 1, n 1, k 2, n 2, d, tolerance) returns the probability that the difference of two independent binomial proportions is greater than d. Here k i is the success and n i is the total trials from sampling the binomial proportion p i. p 1 and p 2 are independent. The numerical precision tolerance is set at 1e-16 and will be dropped in later versions. > pdiff(5, 10, 2, 10, 0.75, 1e-16) [1] > pdiff(5, 10, 2, 10, 0.25, 1e-16) [1] The function pdiffci(k 1, n 1, k 2, n 2, α, method) returns the confidence interval of the difference between the two binomial proportion at each observance of the number of success and the number of trials, significance level alpha, and specified boundary condition. The distribution for p 1 p 2 follows a joint probability which is numerically determined. The CI is calculated in a similar way as the function singleci(k, n, α, method). > pdiffci(5, 10, 2, 10, 0.05, 1)

11 9 $a [1] $b [1] Usage of C++ binaries

12 10 CHAPTER 4 MISC 1. News The documentation is updated for ExactNumCI-v I have used two good references for writing latex and bibtex codes: and The R command output is generated by Sweave.

13 REFERENCES 11

MACAU User Manual. Xiang Zhou. March 15, 2017

MACAU User Manual. Xiang Zhou. March 15, 2017 MACAU User Manual Xiang Zhou March 15, 2017 Contents 1 Introduction 2 1.1 What is MACAU...................................... 2 1.2 How to Cite MACAU................................... 2 1.3 The Model.........................................

More information

Dealing with Categorical Data Types in a Designed Experiment

Dealing with Categorical Data Types in a Designed Experiment Dealing with Categorical Data Types in a Designed Experiment Part II: Sizing a Designed Experiment When Using a Binary Response Best Practice Authored by: Francisco Ortiz, PhD STAT T&E COE The goal of

More information

PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search

PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search Bioinformatics (2006), accepted. PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search Jing Ding Department of Electrical and Computer Engineering, Iowa State University, Ames, IA

More information

Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response

Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response Categorical Data in a Designed Experiment Part 2: Sizing with a Binary Response Authored by: Francisco Ortiz, PhD Version 2: 19 July 2018 Revised 18 October 2018 The goal of the STAT COE is to assist in

More information

ClaNC: The Manual (v1.1)

ClaNC: The Manual (v1.1) ClaNC: The Manual (v1.1) Alan R. Dabney June 23, 2008 Contents 1 Installation 3 1.1 The R programming language............................... 3 1.2 X11 with Mac OS X....................................

More information

Confidence Intervals. Dennis Sun Data 301

Confidence Intervals. Dennis Sun Data 301 Dennis Sun Data 301 Statistical Inference probability Population / Box Sample / Data statistics The goal of statistics is to infer the unknown population from the sample. We ve already seen one mode of

More information

metilene - a tool for fast and sensitive detection of differential DNA methylation

metilene - a tool for fast and sensitive detection of differential DNA methylation metilene - a tool for fast and sensitive detection of differential DNA methylation Frank Jühling, Helene Kretzmer, Stephan H. Bernhart, Christian Otto, Peter F. Stadler, Steve Hoffmann Version 0.23 1 Introduction

More information

Ensembl Core API. EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK

Ensembl Core API. EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK Ensembl Core API EMBL European Bioinformatics Institute Wellcome Trust Genome Campus Hinxton, Cambridge, CB10 1SD, UK EBI is an Outstation of the European Molecular Biology Laboratory. Outline a. b. c.

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

StatsMate. User Guide

StatsMate. User Guide StatsMate User Guide Overview StatsMate is an easy-to-use powerful statistical calculator. It has been featured by Apple on Apps For Learning Math in the App Stores around the world. StatsMate comes with

More information

Package ArrayBin. February 19, 2015

Package ArrayBin. February 19, 2015 Package ArrayBin February 19, 2015 Version 0.2 Date 2013-02-01 Title Binarization of numeric data arrays Author Ed Curry Maintainer Depends R (>= 2.15.0), SAGx Fast adaptive binarization for numeric data

More information

Package sglr. February 20, 2015

Package sglr. February 20, 2015 Package sglr February 20, 2015 Type Package Title An R package for power and boundary calculations in pre-licensure vaccine trials using a sequential generalized likelihood ratio test Version 0.7 Date

More information

Classification of Protein Crystallization Imagery

Classification of Protein Crystallization Imagery Classification of Protein Crystallization Imagery Xiaoqing Zhu, Shaohua Sun, Samuel Cheng Stanford University Marshall Bern Palo Alto Research Center September 2004, EMBC 04 Outline Background X-ray crystallography

More information

Statistical Analysis of List Experiments

Statistical Analysis of List Experiments Statistical Analysis of List Experiments Kosuke Imai Princeton University Joint work with Graeme Blair October 29, 2010 Blair and Imai (Princeton) List Experiments NJIT (Mathematics) 1 / 26 Motivation

More information

COPYRIGHTED MATERIAL. ExpDesign Studio 1.1 INTRODUCTION

COPYRIGHTED MATERIAL. ExpDesign Studio 1.1 INTRODUCTION 1 ExpDesign Studio 1.1 INTRODUCTION ExpDesign Studio (ExpDesign) is an integrated environment for designing experiments or clinical trials. It is a powerful and user - friendly statistical software product

More information

Package BlakerCI. August 20, 2015

Package BlakerCI. August 20, 2015 Package BlakerCI August 20, 2015 Type Package Title Blaker's Binomial Confidence Limits Version 1.0-5 Date 2015-08-20 Author Jan Klaschka Maintainer Jan Klaschka Description Fast and

More information

Biostatistics 615/815 Lecture 13: R packages, and Matrix Library

Biostatistics 615/815 Lecture 13: R packages, and Matrix Library Computation Biostatistics 615/815 Lecture 13: R packages, and Library Hyun Min Kang October 18th, 2012 Hyun Min Kang Biostatistics 615/815 - Lecture 13 October 18th, 2012 1 / 23 Writing an R package Computation

More information

Programmable Peer-to-Peer Systems

Programmable Peer-to-Peer Systems Programmable Peer-to-Peer Systems p. 1/18 Programmable Peer-to-Peer Systems Dimitris Vyzovitis vyzo@media.mit.edu Viral Communications MIT Media Laboratory Programmable Peer-to-Peer Systems p. 2/18 Overview

More information

PhD: a web database application for phenotype data management

PhD: a web database application for phenotype data management Bioinformatics Advance Access published June 28, 2005 The Author (2005). Published by Oxford University Press. All rights reserved. For Permissions, please email: journals.permissions@oupjournals.org PhD:

More information

STA215 Inference about comparing two populations

STA215 Inference about comparing two populations STA215 Inference about comparing two populations Al Nosedal. University of Toronto. Summer 2017 June 22, 2017 Two-sample problems The goal of inference is to compare the responses to two treatments or

More information

Package nfca. February 20, 2015

Package nfca. February 20, 2015 Type Package Package nfca February 20, 2015 Title Numerical Formal Concept Analysis for Systematic Clustering Version 0.3 Date 2015-02-10 Author Junheng Ma, Jiayang Sun, and Guo-Qiang Zhang Maintainer

More information

Workshop 6: DNA Methylation Analysis using Bisulfite Sequencing. Fides D Lay UCLA QCB Fellow

Workshop 6: DNA Methylation Analysis using Bisulfite Sequencing. Fides D Lay UCLA QCB Fellow Workshop 6: DNA Methylation Analysis using Bisulfite Sequencing Fides D Lay UCLA QCB Fellow lay.fides@gmail.com Workshop 6 Outline Day 1: Introduction to DNA methylation & WGBS Quick review of linux, Hoffman2

More information

Z-TEST / Z-STATISTIC: used to test hypotheses about. µ when the population standard deviation is unknown

Z-TEST / Z-STATISTIC: used to test hypotheses about. µ when the population standard deviation is unknown Z-TEST / Z-STATISTIC: used to test hypotheses about µ when the population standard deviation is known and population distribution is normal or sample size is large T-TEST / T-STATISTIC: used to test hypotheses

More information

Package binmto. February 19, 2015

Package binmto. February 19, 2015 Type Package Package binmto February 19, 2015 Title Asymptotic simultaneous confidence intervals for many-to-one comparisons of proportions Version 0.0-6 Date 2013-09-30 Author Maintainer

More information

BASTA Bayesian statistical tissue profiling using DNA copy number amplifications (Manual updated )

BASTA Bayesian statistical tissue profiling using DNA copy number amplifications (Manual updated ) BASTA Bayesian statistical tissue profiling using DNA copy number amplifications (Manual updated 26.2.2009) BASTA Bayesian statistical tissue profiling using DNA copy number amplifications (Manual updated

More information

An Excel Add-In for Capturing Simulation Statistics

An Excel Add-In for Capturing Simulation Statistics 2001 Joint Statistical Meetings Atlanta, GA An Excel Add-In for Capturing Simulation Statistics David C. Trindade david.trindade@sun.com Sun Microsystems, Inc. Cupertino, CA David Meade david.meade@amd.com

More information

R- installation and adminstration under Linux for dummie

R- installation and adminstration under Linux for dummie R- installation and adminstration under Linux for dummies University of British Columbia Nov 8, 2012 Outline 1. Basic introduction of Linux Why Linux (department servers)? Some terminology Tools for windows

More information

Installing Lemur on Mac OS X and CSE Systems

Installing Lemur on Mac OS X and CSE Systems Installing Lemur on Mac OS X 10.6.4 and CSE Systems Everything all at once For those of you who just want to copy and paste, here is the quick and dirty. # Config for black.cse.msu.edu # Note that you

More information

Easy visualization of the read coverage using the CoverageView package

Easy visualization of the read coverage using the CoverageView package Easy visualization of the read coverage using the CoverageView package Ernesto Lowy European Bioinformatics Institute EMBL June 13, 2018 > options(width=40) > library(coverageview) 1 Introduction This

More information

Package epitab. July 4, 2018

Package epitab. July 4, 2018 Type Package Package epitab July 4, 2018 Title Flexible Contingency Tables for Epidemiology Version 0.2.2 Author Stuart Lacy Maintainer Stuart Lacy Builds contingency tables that

More information

A Survey of Statistical Modeling Tools

A Survey of Statistical Modeling Tools 1 of 6 A Survey of Statistical Modeling Tools Madhuri Kulkarni (A survey paper written under the guidance of Prof. Raj Jain) Abstract: A plethora of statistical modeling tools are available in the market

More information

Package PTE. October 10, 2017

Package PTE. October 10, 2017 Type Package Title Personalized Treatment Evaluator Version 1.6 Date 2017-10-9 Package PTE October 10, 2017 Author Adam Kapelner, Alina Levine & Justin Bleich Maintainer Adam Kapelner

More information

cgatools Installation Guide

cgatools Installation Guide Version 1.3.0 Complete Genomics data is for Research Use Only and not for use in the treatment or diagnosis of any human subject. Information, descriptions and specifications in this publication are subject

More information

Package Development in Windows

Package Development in Windows Package Development in Windows Duncan Murdoch Department of Statistical and Actuarial Sciences University of Western Ontario August 13, 2008 1 of 46 Outline 1 What are packages? Alternatives to packages

More information

MAC LAYER MISBEHAVIOR EFFECTIVENESS AND COLLECTIVE AGGRESSIVE REACTION APPROACH. Department of Electrical Engineering and Computer Science

MAC LAYER MISBEHAVIOR EFFECTIVENESS AND COLLECTIVE AGGRESSIVE REACTION APPROACH. Department of Electrical Engineering and Computer Science MAC LAYER MISBEHAVIOR EFFECTIVENESS AND COLLECTIVE AGGRESSIVE REACTION APPROACH Vamshikrishna Reddy Giri Neeraj Jaggi Department of Electrical Engineering and Computer Science Outline Introduction MAC

More information

BUCKy Bayesian Untangling of Concordance Knots (applied to yeast and other organisms)

BUCKy Bayesian Untangling of Concordance Knots (applied to yeast and other organisms) Introduction BUCKy Bayesian Untangling of Concordance Knots (applied to yeast and other organisms) Version 1.2, 17 January 2008 Copyright c 2008 by Bret Larget Last updated: 11 November 2008 Departments

More information

A. Configuring Citavi

A. Configuring Citavi This guide shows how you can best configure Citavi to work with LyX. With Citavi you will generate a BibTeX file that is linked to your LyX document. Citations can then be inserted from Citavi or from

More information

PROTEOMIC COMMAND LINE SOLUTION. Linux User Guide December, B i. Bioinformatics Solutions Inc.

PROTEOMIC COMMAND LINE SOLUTION. Linux User Guide December, B i. Bioinformatics Solutions Inc. >_ PROTEOMIC COMMAND LINE SOLUTION Linux User Guide December, 2015 B i Bioinformatics Solutions Inc. www.bioinfor.com 1. Introduction Liquid chromatography-tandem mass spectrometry (LC-MS/MS) based proteomics

More information

Lecture Objectives. Structured Programming & an Introduction to Error. Review the basic good habits of programming

Lecture Objectives. Structured Programming & an Introduction to Error. Review the basic good habits of programming Structured Programming & an Introduction to Error Lecture Objectives Review the basic good habits of programming To understand basic concepts of error and error estimation as it applies to Numerical Methods

More information

Introduction to SparseGrid

Introduction to SparseGrid Introduction to SparseGrid Jelmer Ypma November 27, 2011 Abstract This vignette describes how to use SparseGrid, which is an R translation 1 of the Matlab code on http://www.sparse-grids.de (Heiss & Winschel,

More information

BLAST: Basic Local Alignment Search Tool Altschul et al. J. Mol Bio CS 466 Saurabh Sinha

BLAST: Basic Local Alignment Search Tool Altschul et al. J. Mol Bio CS 466 Saurabh Sinha BLAST: Basic Local Alignment Search Tool Altschul et al. J. Mol Bio. 1990. CS 466 Saurabh Sinha Motivation Sequence homology to a known protein suggest function of newly sequenced protein Bioinformatics

More information

The Expected Performance Curve: a New Assessment Measure for Person Authentication

The Expected Performance Curve: a New Assessment Measure for Person Authentication The Expected Performance Curve: a New Assessment Measure for Person Authentication Samy Bengio Johnny Mariéthoz IDIAP CP 592, rue du Simplon4 192 Martigny, Switzerland {bengio,marietho}@idiap.ch Abstract

More information

boost Documentation Release 0.1 Carl Chenet

boost Documentation Release 0.1 Carl Chenet boost Documentation Release 0.1 Carl Chenet May 06, 2017 Contents 1 Guide 3 1.1 How to install Boost........................................... 3 1.2 Configure Boost.............................................

More information

Package NNTbiomarker

Package NNTbiomarker Type Package Package NNTbiomarker August 21, 2015 Title Calculate Design Parameters for Biomarker Validation Studies Version 0.29.11 Date 2015-08-20 Author Roger Day Maintainer Roger Day

More information

TFM-Explorer user manual

TFM-Explorer user manual TFM-Explorer user manual Laurie Tonon January 27, 2010 1 Contents 1 Introduction 3 1.1 What is TFM-Explorer?....................... 3 1.2 Versions................................ 3 1.3 Licence................................

More information

USING BRAT-BW Table 1. Feature comparison of BRAT-bw, BRAT-large, Bismark and BS Seeker (as of on March, 2012)

USING BRAT-BW Table 1. Feature comparison of BRAT-bw, BRAT-large, Bismark and BS Seeker (as of on March, 2012) USING BRAT-BW-2.0.1 BRAT-bw is a tool for BS-seq reads mapping, i.e. mapping of bisulfite-treated sequenced reads. BRAT-bw is a part of BRAT s suit. Therefore, input and output formats for BRAT-bw are

More information

Package CVR. March 22, 2017

Package CVR. March 22, 2017 Type Package Title Canonical Variate Regression Version 0.1.1 Date 2017-03-17 Author Chongliang Luo, Kun Chen. Package CVR March 22, 2017 Maintainer Chongliang Luo Perform canonical

More information

Package samplesizelogisticcasecontrol

Package samplesizelogisticcasecontrol Package samplesizelogisticcasecontrol February 4, 2017 Title Sample Size Calculations for Case-Control Studies Version 0.0.6 Date 2017-01-31 Author Mitchell H. Gail To determine sample size for case-control

More information

Solr Installation User Guide. Solr Installation Brainvire Infotech Pvt. Ltd

Solr Installation User Guide. Solr Installation Brainvire Infotech Pvt. Ltd Solr Installation 1 Lets see how to Install Solr, it is very easy and we are going to do that in this Solr Installation guideline. So let s start! Let s start for Linux and Mac. We ll guide you trough

More information

The Expected Performance Curve: a New Assessment Measure for Person Authentication

The Expected Performance Curve: a New Assessment Measure for Person Authentication R E S E A R C H R E P O R T I D I A P The Expected Performance Curve: a New Assessment Measure for Person Authentication Samy Bengio 1 Johnny Mariéthoz 2 IDIAP RR 03-84 March 10, 2004 submitted for publication

More information

Conda Documentation. Release latest

Conda Documentation. Release latest Conda Documentation Release latest August 09, 2015 Contents 1 Installation 3 2 Getting Started 5 3 Building Your Own Packages 7 4 Getting Help 9 5 Contributing 11 i ii Conda Documentation, Release latest

More information

Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial

Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial Beyond the Assumption of Constant Hazard Rate in Estimating Incidence Rate on Current Status Data with Applications to Phase IV Cancer Trial Deokumar Srivastava, Ph.D. Member Department of Biostatistics

More information

The Power and Sample Size Application

The Power and Sample Size Application Chapter 72 The Power and Sample Size Application Contents Overview: PSS Application.................................. 6148 SAS Power and Sample Size............................... 6148 Getting Started:

More information

Setting up an SDK for Secondo

Setting up an SDK for Secondo This file is part of SECONDO. Copyright (C) 2004, University in Hagen, Department of Computer Science, Database Systems for New Applications. SECONDO is free software; you can redistribute it and/or modify

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

Evaluating generalization (validation) Harvard-MIT Division of Health Sciences and Technology HST.951J: Medical Decision Support

Evaluating generalization (validation) Harvard-MIT Division of Health Sciences and Technology HST.951J: Medical Decision Support Evaluating generalization (validation) Harvard-MIT Division of Health Sciences and Technology HST.951J: Medical Decision Support Topics Validation of biomedical models Data-splitting Resampling Cross-validation

More information

The binmto Package. August 25, 2007

The binmto Package. August 25, 2007 The binmto Package August 25, 2007 Type Package Title Asymptotic simultaneous confdence intervals for many-to-one comparisons of proportions Version 0.0-3 Date 2006-12-29 Author Maintainer

More information

Cecil Jones Academy Mathematics Fundamentals

Cecil Jones Academy Mathematics Fundamentals Year 10 Fundamentals Core Knowledge Unit 1 Unit 2 Estimate with powers and roots Calculate with powers and roots Explore the impact of rounding Investigate similar triangles Explore trigonometry in right-angled

More information

Package indelmiss. March 22, 2019

Package indelmiss. March 22, 2019 Type Package Package indelmiss March 22, 2019 Title Insertion Deletion Analysis While Accounting for Possible Missing Data Version 1.0.9 Date 2019-03-22 Author Utkarsh J. Dang and G. Brian Golding Maintainer

More information

STATA 13 INTRODUCTION

STATA 13 INTRODUCTION STATA 13 INTRODUCTION Catherine McGowan & Elaine Williamson LONDON SCHOOL OF HYGIENE & TROPICAL MEDICINE DECEMBER 2013 0 CONTENTS INTRODUCTION... 1 Versions of STATA... 1 OPENING STATA... 1 THE STATA

More information

1 RefresheR. Figure 1.1: Soy ice cream flavor preferences

1 RefresheR. Figure 1.1: Soy ice cream flavor preferences 1 RefresheR Figure 1.1: Soy ice cream flavor preferences 2 The Shape of Data Figure 2.1: Frequency distribution of number of carburetors in mtcars dataset Figure 2.2: Daily temperature measurements from

More information

Installing the Quantum ESPRESSO distribution

Installing the Quantum ESPRESSO distribution Joint ICTP-TWAS Caribbean School on Electronic Structure Fundamentals and Methodologies, Cartagena, Colombia (2012). Installing the Quantum ESPRESSO distribution Coordinator: A. D. Hernández-Nieves Installing

More information

Binary Diagnostic Tests Clustered Samples

Binary Diagnostic Tests Clustered Samples Chapter 538 Binary Diagnostic Tests Clustered Samples Introduction A cluster randomization trial occurs when whole groups or clusters of individuals are treated together. In the twogroup case, each cluster

More information

Statistics With Confidence: Confidence Intervals And Statistical Guidelines (Book With Diskette For Windows 95, 98, NT) READ ONLINE

Statistics With Confidence: Confidence Intervals And Statistical Guidelines (Book With Diskette For Windows 95, 98, NT) READ ONLINE Statistics With Confidence: Confidence Intervals And Statistical Guidelines (Book With Diskette For Windows 95, 98, NT) READ ONLINE How can I obtain confidence intervals for predicted What can you tell

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

The preseq Manual. Timothy Daley Victoria Helus Andrew Smith. January 17, 2014

The preseq Manual. Timothy Daley Victoria Helus Andrew Smith. January 17, 2014 The preseq Manual Timothy Daley Victoria Helus Andrew Smith January 17, 2014 Contents 1 Quick Start 2 2 Installation 3 3 Using preseq 4 4 File Format 5 5 Detailed usage 6 6 lc extrap Examples 8 7 preseq

More information

HybridCheck User Manual

HybridCheck User Manual HybridCheck User Manual Ben J. Ward February 2015 HybridCheck is a software package to visualise the recombination signal in assembled next generation sequence data, and it can be used to detect recombination,

More information

Package UnivRNG. R topics documented: January 10, Type Package

Package UnivRNG. R topics documented: January 10, Type Package Type Package Package UnivRNG January 10, 2018 Title Univariate Pseudo-Random Number Generation Version 1.1 Date 2018-01-10 Author Hakan Demirtas, Rawan Allozi Maintainer Rawan Allozi

More information

7/2/2013 R packaging with Rstudio Topics:

7/2/2013 R packaging with Rstudio Topics: 7/2/2013 R packaging with Rstudio Topics: How to make an R package using RStudio Sharing packages using github or url Tip for speeding up code Using Sweave and RStudio to do 'reproducible research/programming'.

More information

ALGORITHM USER GUIDE FOR RVD

ALGORITHM USER GUIDE FOR RVD ALGORITHM USER GUIDE FOR RVD The RVD program takes BAM files of deep sequencing reads in as input. Using a Beta-Binomial model, the algorithm estimates the error rate at each base position in the reference

More information

Workshop 8: Model selection

Workshop 8: Model selection Workshop 8: Model selection Selecting among candidate models requires a criterion for evaluating and comparing models, and a strategy for searching the possibilities. In this workshop we will explore some

More information

Introduction to QuickMath

Introduction to QuickMath Introduction to QuickMath https://www.quickmath.io QuickMath Authors April 2, 2018 Contents 1 Basic Editing 1 1.1 System Requirements.......................... 1 1.2 Editor Layout...............................

More information

Frequentist and Bayesian Interim Analysis in Clinical Trials: Group Sequential Testing and Posterior Predictive Probability Monitoring Using SAS

Frequentist and Bayesian Interim Analysis in Clinical Trials: Group Sequential Testing and Posterior Predictive Probability Monitoring Using SAS MWSUG 2016 - Paper PH06 Frequentist and Bayesian Interim Analysis in Clinical Trials: Group Sequential Testing and Posterior Predictive Probability Monitoring Using SAS Kechen Zhao, University of Southern

More information

Release Note. Agilent Genomic Workbench Standard Edition

Release Note. Agilent Genomic Workbench Standard Edition Release te Agilent Genomic Workbench Standard Edition 5.0.14 A. New for the Agilent Genomic Workbench DNA Analytics becomes a component of Agilent Genomic Workbench DNA Analytics becomes a component of

More information

Package RcppBDT. August 29, 2016

Package RcppBDT. August 29, 2016 Type Package Package RcppBDT August 29, 2016 Title Rcpp bindings for the Boost Date_Time library Version 0.2.3 Date 2014-04-13 Author Dirk Eddelbuettel and Romain Francois Maintainer This package provides

More information

Sep. Guide. Edico Genome Corp North Torrey Pines Court, Plaza Level, La Jolla, CA 92037

Sep. Guide.  Edico Genome Corp North Torrey Pines Court, Plaza Level, La Jolla, CA 92037 Sep 2017 DRAGEN TM Quick Start Guide www.edicogenome.com info@edicogenome.com Edico Genome Corp. 3344 North Torrey Pines Court, Plaza Level, La Jolla, CA 92037 Notice Contents of this document and associated

More information

USING BRAT UPDATES 2 SYSTEM AND SPACE REQUIREMENTS

USING BRAT UPDATES 2 SYSTEM AND SPACE REQUIREMENTS USIN BR-1.1.17 1 UPDES In version 1.1.17, we fixed a bug in acgt-count: in the previous versions it had only option -s to accept the file with names of the files with mapping results of single-end reads;

More information

Package DPBBM. September 29, 2016

Package DPBBM. September 29, 2016 Type Package Title Dirichlet Process Beta-Binomial Mixture Version 0.2.5 Date 2016-09-21 Author Lin Zhang Package DPBBM September 29, 2016 Maintainer Lin Zhang Depends R (>= 3.1.0)

More information

User's guide: Manual for V-Xtractor 2.0

User's guide: Manual for V-Xtractor 2.0 User's guide: Manual for V-Xtractor 2.0 This is a guide to install and use the software utility V-Xtractor. The software is reasonably platform-independent. The instructions below should work fine with

More information

A Macro Application on Confidence Intervals for Binominal Proportion

A Macro Application on Confidence Intervals for Binominal Proportion A SAS @ Macro Application on Confidence Intervals for Binominal Proportion Kaijun Zhang Sheng Zhang ABSTRACT: FMD K&L Inc., Fort Washington, Pennsylvanian Confidence Intervals (CI) are very important to

More information

CPSC : Program 3, Perceptron and Backpropagation

CPSC : Program 3, Perceptron and Backpropagation CPSC 420-500: Program 3, Perceptron and Backpropagation Yoonsuck Choe Department of Computer Science Texas A&M University November 2, 2007 1 Overview You will implement perceptron learning from scratch

More information

Package bayesdp. July 10, 2018

Package bayesdp. July 10, 2018 Type Package Package bayesdp July 10, 2018 Title Tools for the Bayesian Discount Prior Function Version 1.3.2 Date 2018-07-10 Depends R (>= 3.2.3), ggplot2, survival, methods Functions for data augmentation

More information

Package Tnseq. April 13, 2017

Package Tnseq. April 13, 2017 Version 0.1.2 Date 2017-4-13 Package Tnseq April 13, 2017 Title Identification of Conditionally Essential Genes in Transposon Sequencing Studies Author Lili Zhao Maintainer Lili Zhao

More information

Kyoto Constella Technologies Co., Ltd. CzeekS Manual

Kyoto Constella Technologies Co., Ltd. CzeekS Manual Kyoto Constella Technologies Co., Ltd CzeekS Manual December 4, 2014 TABLE OF CONTENTS 1. Introduction... 1 2. Installation and Settings... 2 2-1. Extracting Archive Files and Placement of License File...

More information

Package clusterpower

Package clusterpower Version 0.6.111 Date 2017-09-03 Package clusterpower September 5, 2017 Title Power Calculations for Cluster-Randomized and Cluster-Randomized Crossover Trials License GPL (>= 2) Imports lme4 (>= 1.0) Calculate

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 42.0, Spring 18 @salesforcedocs Last updated: April 24, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

= = P. IE 434 Homework 2 Process Capability. Kate Gilland 10/2/13. Figure 1: Capability Analysis

= = P. IE 434 Homework 2 Process Capability. Kate Gilland 10/2/13. Figure 1: Capability Analysis Kate Gilland 10/2/13 IE 434 Homework 2 Process Capability 1. Figure 1: Capability Analysis σ = R = 4.642857 = 1.996069 P d 2 2.326 p = 1.80 C p = 2.17 These results are according to Method 2 in Minitab.

More information

MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains

MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains MACHINE LEARNED BOUNDARY DEFINITIONS... The True Story of A Ten-Year Trail Across the Ph.D. Plains Stewart Crawford-Hines BMAC 27 October 23 Outline Results () Comparisons (7, ) Quantification (6) Engineering

More information

An Introduction to Management Science, 12e. Instructions for Using Excel 2007

An Introduction to Management Science, 12e. Instructions for Using Excel 2007 An Introduction to Management Science, 12e Instructions for Using Excel 2007 Appendix 12.2 Simulation Using Crystal Ball Pages 591 2: Defining and Entering Assumptions We are now ready to define the probability

More information

User Manual for TreeMix v1.1. Joseph K. Pickrell, Jonathan K. Pritchard

User Manual for TreeMix v1.1. Joseph K. Pickrell, Jonathan K. Pritchard User Manual for TreeMix v1.1 Joseph K. Pickrell, Jonathan K. Pritchard October 1, 2012 Contents 1 Introduction 2 2 Installation 2 3 Input file format 2 3.1 SNP data..........................................

More information

Package RcppArmadillo

Package RcppArmadillo Type Package Package RcppArmadillo December 6, 2017 Title 'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library Version 0.8.300.1.0 Date 2017-12-04 Author Dirk Eddelbuettel, Romain Francois,

More information

SigmaXL Feature List Summary, What s New in Versions 6.0, 6.1 & 6.2, Installation Notes, System Requirements and Getting Help

SigmaXL Feature List Summary, What s New in Versions 6.0, 6.1 & 6.2, Installation Notes, System Requirements and Getting Help SigmaXL Feature List Summary, What s New in Versions 6.0, 6.1 & 6.2, Installation Notes, System Requirements and Getting Help Copyright 2004-2013, SigmaXL Inc. SigmaXL Version 6.2 Feature List Summary

More information

Constrained Optimal Sample Allocation in Multilevel Randomized Experiments Using PowerUpR

Constrained Optimal Sample Allocation in Multilevel Randomized Experiments Using PowerUpR Constrained Optimal Sample Allocation in Multilevel Randomized Experiments Using PowerUpR Metin Bulus & Nianbo Dong University of Missouri March 3, 2017 Contents Introduction PowerUpR Package COSA Functions

More information

CPSC : Program 3, Perceptron and Backpropagation

CPSC : Program 3, Perceptron and Backpropagation CPSC 420-500: Program 3, Perceptron and Backpropagation Yoonsuck Choe Department of Computer Science Texas A&M University October 31, 2008 1 Overview You will implement perceptron learning from scratch

More information

Development Environment of Embedded System

Development Environment of Embedded System Development Environment of Embedded System Outline Embedded hardware development Embedded software development FPGA board Source: http://www.altera.com/ Source: http://www.hitechglobal.com/boards/virtex4lx200.htm

More information

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 23 CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 3.1 DESIGN OF EXPERIMENTS Design of experiments is a systematic approach for investigation of a system or process. A series

More information

Chisel floor levels and doom3 botlib experimentation, documentation and extension

Chisel floor levels and doom3 botlib experimentation, documentation and extension slide 1 Chisel floor levels and doom3 botlib experimentation, documentation and extension for your coursework you need to alter chisel and also extend the doom3 botlib API during this tutorial we will

More information

Software Documentation of the Potential Support Vector Machine

Software Documentation of the Potential Support Vector Machine Software Documentation of the Potential Support Vector Machine Tilman Knebel and Sepp Hochreiter Department of Electrical Engineering and Computer Science Technische Universität Berlin 10587 Berlin, Germany

More information

Package ssd. February 20, Index 5

Package ssd. February 20, Index 5 Type Package Package ssd February 20, 2015 Title Sample Size Determination (SSD) for Unordered Categorical Data Version 0.3 Date 2014-11-30 Author Junheng Ma and Jiayang Sun Maintainer Junheng Ma

More information

Package rplotengine. R topics documented: August 8, 2018

Package rplotengine. R topics documented: August 8, 2018 Type Package Version 1.0-7 Date 2018-08-08 Title R as a Plotting Engine Depends R (>= 2.6.2), xtable Package rplotengine August 8, 2018 Description Generate basic charts either by custom applications,

More information