Notes on Statistical Learning

Total Page:16

File Type:pdf, Size:1020Kb

Notes on Statistical Learning Notes on Statistical Learning John I. Marden Copyright 2006 2 Contents 1 Introduction 5 2 Linear models 7 2.1 Good predictions: Squared error loss and in-sample error........... 8 2.2 Matrices and least-squares estimates . ....... 9 2.3 Mean vectors and covariance matrices . ...... 10 2.4 Prediction using least-squares . ...... 11 2.5 Subset selection and Mallows’ Cp ........................ 13 2.5.1 Estimatingthein-sampleerrors . ... 15 2.5.2 Findingthebestsubset. 17 2.5.3 UsingR .................................. 19 2.6 Regularization: Ridgeregression . ....... 22 2.6.1 Estimatingthein-sampleerrors . ... 24 2.6.2 Finding the best λ ............................ 25 2.6.3 UsingR .................................. 28 2.7 Lasso........................................ 32 2.7.1 Estimatingthein-sampleerrors . ... 33 2.7.2 Finding the best λ ............................ 34 2.7.3 UsingR .................................. 37 3 Linear Predictors of Non-linear Functions 39 3.1 Polynomials .................................... 41 3.1.1 Leave-one-out cross-validation . ..... 48 3.1.2 UsingR .................................. 48 3.1.3 Thecross-validationestimate . ... 55 3.2 Sinesandcosines ................................. 56 2 3.2.1 Estimating σe ............................... 61 3.2.2 Cross-validation. .. .. 63 3.2.3 UsingR .................................. 68 3.3 Localfitting: Regressionsplines . ...... 70 3.3.1 UsingR .................................. 80 3.4 Smoothingsplines................................ 81 3 4 CONTENTS 3.4.1 UsingR .................................. 85 3.4.2 Aninterestingresult . 85 3.5 Aglimpseofwavelets.............................. 85 3.5.1 Haarwavelets ............................... 88 3.5.2 An example of another set of wavelets . .. 91 3.5.3 ExampleUsingR............................. 94 3.5.4 Remarks.................................. 98 4 Model-based Classification 103 4.1 The multivariate normal distribution and linear discrimination . 106 4.1.1 FindingthejointMLE . .. .. 107 4.1.2 Using R .................................. 109 4.1.3 Maximizing over Σ ............................ 112 4.2 Quadraticdiscrimination . .... 113 4.2.1 Using R .................................. 114 4.3 The Akaike Information Criterion (AIC) . ...... 115 4.3.1 Bayes Information Criterion (BIC) . 118 4.3.2 Example:Irisdata ............................ 118 4.3.3 Hypothesistesting ............................ 121 4.4 Otherexponentialfamiles . 121 4.5 Conditioning on X:Logisticregression . 122 Chapter 1 Introduction These notes are based on a course in statistical learning using the text The Elements of Statistical Learning by Hastie, Tibshirani and Friedman (2001) (The first edition). Hence, everything throughout these pages implicitly uses that book as a reference. So keep a copy handy! But everything here is my own interpretation. What is machine learning? In artificial intelligence, machine learning involves some kind of machine (robot, computer) that modifies its behavior based on experience. For example, if a robot falls down every time it comes to a stairway, it will learn to avoid stairways. E- mail programs often learn to distinguish spam from regular e-mail. In statistics, machine learning uses statistical data to learn. Generally, there are two categories: Supervised learning data consists of example (y, x)’s, the training data. The machine is a function built based on the data that takes in a new x, and produces a guess of the corresponding y. It is prediction if the y’s are continuous, and classification or categorization if the y’s are categories. Unsupervised learning is clustering. The data consists of example x’s, and the machine is a function that groups the x’s into clusters. What is data mining? Looking for relationships in large data sets. Observations are “baskets” of items. The goal is to see what items are associated with other items, or which items’ presence implies the presence of other items. For example, at Walmart, one may realize that people who buy socks also buy beer. Then Walmart would be smart to put some beer cases near the socks, or vice versa. Or if the government is spying on everyone’s e-mails, certain words (which I better not say) found together might cause the writer to be sent to Guantanamo. 5 6 CHAPTER 1. INTRODUCTION The difference for a statistician between supervised machine learning and regular data analysis is that in machine learning, the statistician does not care about the estimates of parameters nor hypothesis tests nor which models fit best. Rather, the focus is on finding some function that does a good job of predicting y from x. Estimating parameters, fitting models, etc., may indeed be important parts of developing the function, but they are not the objective. Chapter 2 Linear models To ease into machine learning, we start with regular linear models. There is one dependent variable, the y, and p explanatory variables, the x’s. The data, or training sample, consists of n independent observations: (y1, x1), (y2, x2),..., (yN , xN ). (2.1) For individual i, yi is the value of the one-dimensional dependent variable, and xi1 xi2 xi = . (2.2) . x ip is the p 1 vector of values for the explanatory variables. Generally, the y ’s are continuous, × i but the xij’s can be anything numerical, e.g., 0-1 indicator variables, or functions of another variable (e.g., x, x2, x3). The linear model is y = β + β x + + β x + e . (2.3) i 0 1 i1 ··· p ip i The βj’s are parameters, usually unknown and to be estimated. The ei’s are the errors or residuals. We will assume that • The ei’s are independent (of each other, and of the xi’s); • E[ei] = 0 for each i; • 2 V ar[ei]= σe for each i. There is also a good chance we will assume they are normally distributed. From STAT424 and 425 (or other courses), you know what to do now: estimate the βj’s 2 and σe , decide which βj’s are significant, do F -tests, look for outliers and other violations of the assumptions, etc. 7 8 CHAPTER 2. LINEAR MODELS Here, we may do much of that, but with the goal of prediction. Suppose (yNew, xNew) is a new point, satisfying the same model and assumptions as above (in particular, being independent of the observed xi’s). Once we have the estimates of the βi’s (based on the observed data), we predict yNew from xNew by yNew = β + β xnew + + β xnew. (2.4) 0 1 1 ··· p p New New New The prediction is good if by isb closeb to y . We dob not know y , but we can hope. But the key point is b The estimates of the parameters are good if they give good predictions. We don’t care if the βj’s are close to the βj’s; we don’t care about unbiasedness or minimum variance or significance. We just care whether we get good predictions. b 2.1 Good predictions: Squared error loss and in-sample error We want the predictions to be close to the actual (unobserved) value of the dependent variable, that is, we want yNew close to yNew. One way to measure closeness is by using squared error: b (yNew yNew)2. (2.5) − Because we do not know yNew (yet), we might look at the expected value instead: b E[(Y New Y New)2]. (2.6) − New But what is that the expected value over? Certainlyb Y , but the Yi’s and Xi’s in the sample, as well as the XNew, could all be considered random. There is no universal answer, but for our purposes here we will assume that the xi’s are fixed, and all the Yi’s are random. The next question is what to do about xNew? If you have a particular xNew in mind, then use that: E[(Y New Y New)2 X = x ,...,X = x ,XNew = xNew]. (2.7) − | 1 1 N N But typically you are creatingb a predictor for many new x’s, and likely you do not know what they will be. (You don’t know what the next 1000 e-mails you get will be.) A reasonable approach is to assume the new x’s will look much like the old ones, hence you would look at the errors for N new xi’s being the same as the old ones. Thus we would have N new cases, New New New (yi , xi ), but where xi = xi. The N expected errors are averaged, to obtain what is called the in-sample error: 1 N ERR = E[(Y New Y New)2 X = x ,...,X = x ,XNew = xNew]. (2.8) in N i − i | 1 1 N N i i Xi=1 In particular situations, you may haveb a more precise knowledge of what the new x’s would be. By all means, use those values. We will drop the conditional part of the notation for simplicity. 2.2. MATRICES AND LEAST-SQUARES ESTIMATES 9 2.2 Matrices and least-squares estimates Ultimately we want to find estimates of the parameters that yield a low ERRin. We’ll start with the least squares estimate, then translate things to matrices. The estimates of the βj’s depends on just the training sample. The least squares estimate of the parameters are the bj’s that minimize the objective function N obj(b ,...,b )= (y b b x b x )2. (2.9) 0 p i − 0 − 1 i1 −···− p ip Xi=1 The function is a nice convex function in the bj’s, so setting the derivatives equal to zero and solving will yield the minimum. The derivatives are ∂ N obj(b0,...,bp) = 2 (yi b0 b1xi1 bpxip); ∂b0 − − − −···− Xi=1 ∂ N obj(b0,...,bp) = 2 xij(yi b0 b1xi1 bpxip), j 1. (2.10) ∂bj − − − −···− ≥ Xi=1 Write the equations in matrix form, staring with y b b x b x y 1 x x x b 1 − 0 − 1 11 −···− p 1p 1 11 12 ··· 1p 0 y b b x b x y 1 x x x b 2 − 0 − 1 21 −···− p 2p 2 21 22 ··· 2p 1 .
Recommended publications
  • Royal Statistical Scandal
    Royal Statistical Scandal False and misleading claims by the Royal Statistical Society Including on human poverty and UN global goals Documentary evidence Matt Berkley Draft 27 June 2019 1 "The Code also requires us to be competent. ... We must also know our limits and not go beyond what we know.... John Pullinger RSS President" https://www.statslife.org.uk/news/3338-rss-publishes-revised-code-of- conduct "If the Royal Statistical Society cannot provide reasonable evidence on inflation faced by poor people, changing needs, assets or debts from 2008 to 2018, I propose that it retract the honour and that the President makes a statement while he holds office." Matt Berkley 27 Dec 2018 2 "a recent World Bank study showed that nearly half of low-and middle- income countries had insufficient data to monitor poverty rates (2002- 2011)." Royal Statistical Society news item 2015 1 "Max Roser from Oxford points out that newspapers could have legitimately run the headline ' Number of people in extreme poverty fell by 137,000 since yesterday' every single day for the past 25 years... Careless statistical reporting could cost lives." President of the Royal Statistical Society Lecture to the Independent Press Standards Organisation April 2018 2 1 https://www.statslife.org.uk/news/2495-global-partnership-for- sustainable-development-data-launches-at-un-summit 2 https://www.statslife.org.uk/features/3790-risk-statistics-and-the-media 3 "Mistaken or malicious misinformation can change your world... When the government is wrong about you it will hurt you too but you may never know how.
    [Show full text]
  • 1 Main Panel a 1 Clinical Medicine 2 Public Health, Health Services
    Main Panel A 1 Clinical Medicine 2 Public Health, health services and Primary Care 3 Allied Health Professions, Dentistry, Nursing and Pharmacy 4 Psychology, Psychiatry and Neuroscience 5 Biological Services 6 Agriculture, Food and Veterinary Sciences Main Panel B 7 Earth Systems and Environmental Sciences 8 Chemistry 9 Physics 10 Mathematical Sciences 11 Computer Sciences 12 Engineering Main Panel C 13 Architecture, Built Environment and Planning 14 Geography and Environmental Studies 15 Archaeology 16 Economics and Econometrics 17 Business and Management Studies 18 Law 19 Politics and International Studies 20 Social Work and Social Policy 21 Sociology 22 Anthropology and Development Studies 23 Education 24 Sport and Exercise Sciences, Leisure and Tourism Main Panel D 25 Area Studies 26 Modern Languages and Linguistics 27 English Language and Literature 28 History 29 Classics 30 Philosophy 31 Theology and Religious Studies 32 Art and Design: History, Practice and Theory 33 Music, Drama, Dance, performing Arts, Film and Screen Studies 34 Communication, Cultural and Media Studies, Library and Information Management 1 * denotes interdisciplinary member on a main panel, and interdisciplinary adviser on a sub-panel Main Panel A Chair Professor John Iredale University of Bristol Members Professor Doreen Cantrell University of Dundee Professor Peter Clegg University of Liverpool Professor David Crossman Chief Scientist Scottish Government Professor Dame Anna Dominiczak* University of Glasgow Professor Paul Elliott Imperial College London Professor
    [Show full text]
  • IMS Bulletin 35(4)
    Volume 35 Issue 4 IMS Bulletin May 2006 Executive Director reports ach year as I sit down to write this report, I reflect CONTENTS a bit on the past year. One recurring theme always 1 Executive Director’s report comes to me: the commitment of the IMS leader- Eship. All the IMS leaders are volunteers. They give of their 2 IMS Members’ News: Peter Green, Guy Nason, time and energy to grow your organization and your profes- Geoffrey Grimmett, Steve sion. Countless hours are spent by the Executive Committee, Brooks, Simon Tavaré Editors and Committee Chairs. I have encountered numer- ous people who truly give of themselves to create a strong 3 CIS seeks Contributing and vibrant organization. Editors Elyse Gustafson, the IMS The IMS keeps its administrative expenses incredibly low Executive Director IMS news 5 (only 7% of all income goes to administrative expenses). This 6 Rio guide: tours and trips happens because of the hard work of volunteers. Next time you see one of the IMS leaders, whether the President or a 8 IMS FAQs committee member, thank them for their time. 11 Report: Stochastik-Tage Our best ideas for new programming or improvements come directly from the meeting membership. The number of changes the IMS has made because a member brought 12 Le Cam Lecture preview: the idea to us is immeasurable. As an organization, the IMS leadership is very open to Stephen Stigler growth and change. Bring us your ideas: they will be heard! 13 Medallion Lecture pre- Please feel free to contact me with your thoughts.
    [Show full text]
  • Royal Statistical Society Duties of Council Members Council Is The
    Royal Statistical Society Duties of Council members Council is the governing body of the Society and its members are elected by the Fellowship. Council sets the long term strategy, the business plan and oversight of all the RSS’s many activities including financial matters. Council members are elected to serve for a maximum term of office of 4 years. Members attend the RSS Council which meets 5 times a year at Errol Street in London to conduct its formal meetings. These meetings are from 11am-4pm and are in: January, April, July, October and December. New members are invited to attend the December meeting prior to the session for which they have been elected. Members usually become involved, as a Council representative, in other areas of the RSS for example, by serving on a standing committee, section committee, working party or theme. Some members, who already serve the Society in another capacity, may not have the time to take on a further role but usually many do. Involvement in other areas does not necessarily require attendance at meetings. Each of the 12 themes (which support the delivery and development of the RSS’s activities) are developing support or consultation groups which members are encouraged to join and often this is conducted by email. Council members are not only trustees of the Society but are ambassadors for furthering the Society’s aims. Members of Council are sometimes asked to represent the President at formal functions or other events and all Council members are invited to get involved in specific activities such as: • Joining the media contacts list; • Promoting membership of the Society to colleagues; • Talking to students or school children about statistics.
    [Show full text]
  • Computational and Financial Econometrics (CFE 2017)
    CFE-CMStatistics 2017 PROGRAMME AND ABSTRACTS 11th International Conference on Computational and Financial Econometrics (CFE 2017) http://www.cfenetwork.org/CFE2017 and 10th International Conference of the ERCIM (European Research Consortium for Informatics and Mathematics) Working Group on Computational and Methodological Statistics (CMStatistics 2017) http://www.cmstatistics.org/CMStatistics2017 Senate House & Birkbeck University of London, UK 16 – 18 December 2017 ⃝c ECOSTA ECONOMETRICS AND STATISTICS. All rights reserved. I CFE-CMStatistics 2017 ISBN 978-9963-2227-4-2 ⃝c 2017 - ECOSTA ECONOMETRICS AND STATISTICS Technical Editors: Gil Gonzalez-Rodriguez and Marc Hofmann. All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted, in any other form or by any means without the prior permission from the publisher. II ⃝c ECOSTA ECONOMETRICS AND STATISTICS. All rights reserved. CFE-CMStatistics 2017 International Organizing Committee: Ana Colubi, Erricos Kontoghiorghes, Marc Levene, Bernard Rachet, Herman Van Dijk. CFE 2017 Co-chairs: Veronika Czellar, Hashem Pesaran, Mike Pitt and Stefan Sperlich. CFE 2017 Programme Committee: Knut Are Aastveit, Alessandra Amendola, Josu Arteche, Monica Billio, Roberto Casarin, Gianluca Cubadda, Manfred Deistler, Jean-Marie Dufour, Ekkehard Ernst, Jean-David Fermanian, Catherine Forbes, Philip Hans Franses, Marc Hallin, Alain Hecq, David Hendry, Benjamin Holcblat, Jan Jacobs, Degui Li, Alessandra Luati, Richard Luger, J Isaac Miller, Claudio Morana, Bent
    [Show full text]
  • Package 'Wavethresh'
    Package ‘wavethresh’ October 20, 2016 Type Package Title Wavelets Statistics and Transforms Version 4.6.8 Date 2016-10-18 Depends R (>= 2.10), MASS Description Performs 1, 2 and 3D real and complex-valued wavelet transforms, nondecimated transforms, wavelet packet transforms, nondecimated wavelet packet transforms, multiple wavelet transforms, complex-valued wavelet transforms, wavelet shrinkage for various kinds of data, locally stationary wavelet time series, nonstationary multiscale transfer function modeling, density estimation. License GPL (>= 2) NeedsCompilation yes Author Guy Nason [aut, cre] Maintainer Guy Nason <[email protected]> Repository CRAN Date/Publication 2016-10-20 15:33:30 R topics documented: wavethresh-package . .7 accessC . .8 accessc . .9 accessC.mwd . 10 accessC.wd . 11 accessC.wp . 13 accessC.wst . 14 accessD . 15 accessD.mwd . 16 accessD.wd . 17 accessD.wd3D . 19 1 2 R topics documented: accessD.wp . 21 accessD.wpst . 22 accessD.wst . 24 addpkt . 25 AutoBasis . 26 av.basis . 26 AvBasis . 27 AvBasis.wst . 28 AvBasis.wst2D . 30 BabyECG . 32 BabySS . 34 basisplot . 36 basisplot.BP . 37 basisplot.wp . 38 BAYES.THR . 39 Best1DCols . 41 bestm . 42 BMdiscr . 43 c2to4 . 44 CanUseMoreThanOneColor . 45 checkmyews . 45 Chires5 . 46 Chires6 . 47 cns.............................................. 48 compare.filters . 49 compgrot . 50 compress . 52 compress.default . 53 compress.imwd . 54 conbar . 55 convert............................................ 57 convert.wd . 58 convert.wst . 60 ConvertMessage . 62 Crsswav . 63 cthresh . 64 Cthreshold . 66 CWavDE .......................................... 67 CWCV ........................................... 69 dclaw ............................................ 71 dencvwd . 72 denplot . 73 denproj . 74 denwd . 76 denwr . 77 DJ.EX . 78 dof.............................................. 79 doppler . 80 R topics documented: 3 draw............................................. 81 draw.default . 82 draw.imwd .
    [Show full text]
  • Mathematical Sciences Title of Case
    Impact case study (REF3b) Institution: University of Bristol Unit of Assessment: 10 - Mathematical Sciences Title of case study: Bristol’s research into multiscale methods enables more realistic modelling of real world phenomena providing benefit to industry, government and society. 1. Summary of the impact (indicative maximum 100 words) Wavelets and multiscale methods were introduced and rapidly became popular in scientific academic communities, particularly mathematical sciences, from the mid-1980s. Wavelets are important because they permit more realistic modelling of many real-world phenomena compared to previous techniques, as well as being fast and efficient. Bristol’s research into wavelets started in 1993, has flourished and continues today. Multiscale methods are increasingly employed outside academia. Examples are given here of post-2008 impact in central banking, marketing, finance, R&D in manufacturing industry and commercial software, all originating from research at Bristol. Much of the impact has been generated from the original research via software. This software includes freeware, distributed via international online repositories, and major commercial software, such as Matlab (a preeminent numerical computing environment and programming language with over one million users worldwide). 2. Underpinning research (indicative maximum 500 words) The underpinning research consists of a body of work carried out at the University of Bristol by Bernard Silverman, FRS (Professor of Statistics) from 1993-2003 and Guy Nason (initially Lecturer, now Professor of Statistics) from 1993, supported by many graduate students and postdoctoral researchers, and funded by a variety of sources including the Engineering and Physical Sciences Research Council (EPSRC), the Royal Society, Ministry of Defence, Unilever, Wellcome and the Government Communications Headquarters (GCHQ).
    [Show full text]
  • Vignette: Grammar of Graphics of Genealogy (Ggenealogy)
    Vignette: Grammar of graphics of genealogy (ggenealogy) Lindsay Rutter, Susan Vanderplas, Di Cook ggenealogy version 1.0.1 , 2020-03-04 Contents Citation 2 Summary 2 Introduction 2 Installation..............................................2 Preprocessing pipeline........................................3 General (non-plotting) methods of genealogical data4 Functions for individual vertices..................................5 Functions for pairs of vertices.................................... 12 Functions for the full genealogical structure............................ 12 Plotting methods of genealogical data 14 Plotting the ancestors and descendants of a vertex........................ 14 Plotting the shortest path between two vertices.......................... 16 Plotting shortest paths superimposed on full genealogical structure............... 19 Plotting pairwise distance matrices between a set of vertices................... 24 Interactive plotting methods of genealogical data 27 Branch parsing and calculations 34 Quantitative variable parsing and calculations........................... 34 Qualitative variable parsing and calculations........................... 35 Conclusions 37 1This LATEX vignette document is created using the R function Sweave on the R package ggenealogy. It is automati- cally downloaded with the package and can be accessed with the R command vignette("ggenealogy"). 1 Citation To cite the ggenealogy package, please use: Rutter L, VanderPlas S, Cook D, Graham MA (2019). ggenealogy: An R Package for Visualizing Genealogical
    [Show full text]
  • Governance of Official Statistics: Redefining the Dual Role of the UK Statistics Authority; and Re-Evaluating the Statistics and Registration Service Act 2007
    House of Commons Public Administration and Constitutional Affairs Committee (PACAC) Governance of official statistics: redefining the dual role of the UK Statistics Authority; and re-evaluating the Statistics and Registration Service Act 2007 Eighteenth Report of Session 2017–19 Report, together with formal minutes relating to the report Ordered by the House of Commons to be printed 9 July 2019 HC 1820 Published on 18 July 2019 by authority of the House of Commons Public Administration and Constitutional Affairs Committee The Public Administration and Constitutional Affairs Committee is appointed by the House of Commons to examine the reports of the Parliamentary Commissioner for Administration and the Health Service Commissioner for England, which are laid before this House, and matters in connection therewith; to consider matters relating to the quality and standards of administration provided by civil service departments, and other matters relating to the civil service; and to consider constitutional affairs. Current membership Sir Bernard Jenkin MP (Conservative, Harwich and North Essex) (Chair) Ronnie Cowan MP (Scottish National Party, Inverclyde) Mr Marcus Fysh MP (Conservative, Yeovil) Dame Cheryl Gillan MP (Conservative, Chesham and Amersham) Kelvin Hopkins MP (Independent, Luton North) Dr Rupa Huq MP (Labour, Ealing Central and Acton) Mr David Jones MP (Conservative, Clwyd West) David Morris MP (Conservative, Morecambe and Lunesdale) Tulip Siddiq MP (Labour, Hampstead and Kilburn) Eleanor Smith MP (Labour, Wolverhampton South West) Powers The committee is a select committee, the powers of which are set out in House of Commons Standing Orders, principally in SO No 146. These are available on the internet via www.parliament.uk.
    [Show full text]
  • A Complete Bibliography of Journal of the Royal Statistical Society, Series D (The Statistician): 1990–1999
    A Complete Bibliography of Journal of the Royal Statistical Society, Series D (The Statistician): 1990{1999 Nelson H. F. Beebe University of Utah Department of Mathematics, 110 LCB 155 S 1400 E RM 233 Salt Lake City, UT 84112-0090 USA Tel: +1 801 581 5254 FAX: +1 801 581 4148 E-mail: [email protected], [email protected], [email protected] (Internet) WWW URL: http://www.math.utah.edu/~beebe/ 13 October 2017 Version 1.01 Title word cross-reference [677]. 100 [556]. 1750 [248]. 1900 [1169]. 1984 [700]. 1988 [486]. 1990s [846]. 2 [814, 677]. 24 [59, 58]. 23 [886]. 2 × 2 [643]. ¯ 2 48 [59]. XQ [210]. C(α) [4, 334]. Cp [669]. χ 2 [1111, 1101]. 21st [583]. [643, 467, 434]. F [674]. k [672]. L [1029]. P [641, 742, 374, 494]. P (X2 <X1) [774]. RQ 3 [1024]. [210]. t [1002, 104, 674, 1156]. τ [1085]. U [635]. z [309]. 5 [932]. - [643, 674]. -Error [1002]. -Factorials Abelson [832]. Abortion [131, 132]. [886]. -h [58]. -Moments [1029]. ABPM [59]. Absorption [1052]. -Nearest-Neighbour [672]. -Statistic Abstracts [575, 668, 745]. Abuse [397]. [1156, 669]. -Statistics [635]. -Test [434]. Accident [3, 818]. Accidental [409]. -Tests [674]. -Transformation [309]. Accountants [685]. Accounts [98]. -Value [494]. -Values [374, 742]. -Water 1 2 Accuracy [425, 619, 364]. Achieved [540]. 770, 421, 132, 961, 317, 474, 576, 1171, 168, Achievement [376]. Achieving [678]. 429, 905, 972, 487, 1020, 1066, 1073, 711, Acknowledgement [751]. Action [36]. 218, 381, 186, 760, 778, 837, 1057, 735, 19, Active [244]. Activities [954]. Activity 477, 1098, 1146, 455, 759, 1152, 183, 495, [841].
    [Show full text]
  • IMS Bulletin 31(3)
    Volume 31 Issue 3 IMS Bulletin May/June 2002 Putting the ‘Me’ in Meetings Susan Murphy, IMS Program Secretary, In every leap year the IMS Annual writes about how Meeting is held jointly with the CONTENTS you can contribute to Bernoulli Society, usually outside of the 1 Getting Involved in the organization of North American continent. Planning IMS Meetings our meetings: begins at least two years before the The planning of the meeting. In all of these meetings, our 2 IMS contacts; Articles: Members’ scientific program partner societies take the lead in site News; Free Access to for IMS meetings selection. However in every leap year IMS Journals; Abstract usually begins with plus two (2002, 2006…) we set the News; Fulbright Grants the selection of an IMS program chair. location and time of the IMS Annual 4 Letters to the Editor Once IMS Council approves a program Meeting ourselves. This year’s annual chair, he or she begins to solicit ideas meeting will be in Banff, Canada, 7 Articles: Conference for invited sessions and names of and will coincide with the Fourth Report; MARMAP; Math- potential organizers. This is the time to International Probability Symposium. It Net; Berkeley-Stanford Celebration make suggestions about invited session will include two invited sessions by the topics to the program chair. Statistical Society of Canada, and also 9 Profile: Eurandom The IMS Eastern Regional Meeting a Royal Statistical Society Ordinary 10 IMS Meetings (ENAR) is held jointly with Biometrics Meeting. Leo Breiman will give the Society in late March of each year, with Wald Lectures, and Wing Wong the 14 Obituaries: the planning beginning in January of Neyman Lecture.
    [Show full text]
  • Curriculum Vitae for Peter F. Craigmile
    Curriculum vitae for Peter F. Craigmile Department of Statistics [email protected] The Ohio State University http://www.stat.osu.edu/~pfc/ 1958 Neil Avenue Columbus, OH 43210 USA Education 2000 Ph.D in Statistics, University of Washington (UW) Wavelet{based estimation of trend contaminated long memory processes, Advisers: Drs. Donald B. Percival and Peter Guttorp 1997 Diploma in Mathematical Statistics, University of Cambridge 1996 B.Sc. (Hons.) in Mathematics and Statistics, University of Glasgow (GU) Employment 5/19{ Affiliated Faculty, Translational Data Analytics Institute, The Ohio State University (OSU) 5/19{ Affiliated Faculty, Sustainability Institute, OSU 6/15{ Professor, Department of Statistics, OSU 10/07{6/15 Associate Professor, Department of Statistics, OSU 14-15 Director, Program for Spatial Statistics and Environmental Statistics, Department of Statistics, OSU 12/13{ Honorary Research Fellow, School of Mathematics and Statistics, GU 9/12{11/13 Reader, School of Mathematics and Statistics, GU 11/01{1//07 Assistant Professor, Department of Statistics, OSU 12/00{8/01 Lecturer/Postdoctoral Research Assistant, Department of Statistics, UW 9/98{12/00 Graduate Research Assistant, Department of Statistics, UW (National Center for Statistics and the Environment and STTR program, Air Force Office of Scientific Research) 9/97{6/98 Teaching Assistant, Department of Statistics, UW Honors and awards 2020 Fellow, Institute of Mathematical Statistics 2019 Alumni Award for Distinguished Teaching, OSU 2018 The Thomas and Jean Powers Faculty Award
    [Show full text]