R Primer, Second Edition

Download R Primer, Second Edition PDF Online Free

Author :
Publisher : CRC Press
ISBN 13 : 1351803735
Total Pages : 427 pages
Book Rating : 4.3/5 (518 download)

DOWNLOAD NOW!


Book Synopsis R Primer, Second Edition by : Claus Thorn Ekstrom

Download or read book R Primer, Second Edition written by Claus Thorn Ekstrom and published by CRC Press. This book was released on 2017-02-24 with total page 427 pages. Available in PDF, EPUB and Kindle. Book excerpt: Newcomers to R are often intimidated by the command-line interface, the vast number of functions and packages, or the processes of importing data and performing a simple statistical analysis. The R Primer provides a collection of concise examples and solutions to R problems frequently encountered by new users of this statistical software. This new edition adds coverage of R Studio and reproducible research.

A Primer in Biological Data Analysis and Visualization Using R

Download A Primer in Biological Data Analysis and Visualization Using R PDF Online Free

Author :
Publisher : Columbia University Press
ISBN 13 : 0231537042
Total Pages : 245 pages
Book Rating : 4.2/5 (315 download)

DOWNLOAD NOW!


Book Synopsis A Primer in Biological Data Analysis and Visualization Using R by : Gregg Hartvigsen

Download or read book A Primer in Biological Data Analysis and Visualization Using R written by Gregg Hartvigsen and published by Columbia University Press. This book was released on 2014-02-18 with total page 245 pages. Available in PDF, EPUB and Kindle. Book excerpt: R is the most widely used open-source statistical and programming environment for the analysis and visualization of biological data. Drawing on Gregg Hartvigsen's extensive experience teaching biostatistics and modeling biological systems, this text is an engaging, practical, and lab-oriented introduction to R for students in the life sciences. Underscoring the importance of R and RStudio in organizing, computing, and visualizing biological statistics and data, Hartvigsen guides readers through the processes of entering data into R, working with data in R, and using R to visualize data using histograms, boxplots, barplots, scatterplots, and other common graph types. He covers testing data for normality, defining and identifying outliers, and working with non-normal data. Students are introduced to common one- and two-sample tests as well as one- and two-way analysis of variance (ANOVA), correlation, and linear and nonlinear regression analyses. This volume also includes a section on advanced procedures and a chapter introducing algorithms and the art of programming using R.

Advanced R, Second Edition

Download Advanced R, Second Edition PDF Online Free

Author :
Publisher : CRC Press
ISBN 13 : 1351201298
Total Pages : 562 pages
Book Rating : 4.3/5 (512 download)

DOWNLOAD NOW!


Book Synopsis Advanced R, Second Edition by : Hadley Wickham

Download or read book Advanced R, Second Edition written by Hadley Wickham and published by CRC Press. This book was released on 2019-05-24 with total page 562 pages. Available in PDF, EPUB and Kindle. Book excerpt: Advanced R helps you understand how R works at a fundamental level. It is designed for R programmers who want to deepen their understanding of the language, and programmers experienced in other languages who want to understand what makes R different and special. This book will teach you the foundations of R; three fundamental programming paradigms (functional, object-oriented, and metaprogramming); and powerful techniques for debugging and optimising your code. By reading this book, you will learn: The difference between an object and its name, and why the distinction is important The important vector data structures, how they fit together, and how you can pull them apart using subsetting The fine details of functions and environments The condition system, which powers messages, warnings, and errors The powerful functional programming paradigm, which can replace many for loops The three most important OO systems: S3, S4, and R6 The tidy eval toolkit for metaprogramming, which allows you to manipulate code and control evaluation Effective debugging techniques that you can deploy, regardless of how your code is run How to find and remove performance bottlenecks The second edition is a comprehensive update: New foundational chapters: "Names and values," "Control flow," and "Conditions" comprehensive coverage of object oriented programming with chapters on S3, S4, R6, and how to choose between them Much deeper coverage of metaprogramming, including the new tidy evaluation framework use of new package like rlang (http://rlang.r-lib.org), which provides a clean interface to low-level operations, and purr (http://purrr.tidyverse.org/) for functional programming Use of color in code chunks and figures Hadley Wickham is Chief Scientist at RStudio, an Adjunct Professor at Stanford University and the University of Auckland, and a member of the R Foundation. He is the lead developer of the tidyverse, a collection of R packages, including ggplot2 and dplyr, designed to support data science. He is also the author of R for Data Science (with Garrett Grolemund), R Packages, and ggplot2: Elegant Graphics for Data Analysis.

The R Book

Download The R Book PDF Online Free

Author :
Publisher : John Wiley & Sons
ISBN 13 : 9780470515068
Total Pages : 953 pages
Book Rating : 4.5/5 (15 download)

DOWNLOAD NOW!


Book Synopsis The R Book by : Michael J. Crawley

Download or read book The R Book written by Michael J. Crawley and published by John Wiley & Sons. This book was released on 2007-06-13 with total page 953 pages. Available in PDF, EPUB and Kindle. Book excerpt: The high-level language of R is recognized as one of the mostpowerful and flexible statistical software environments, and israpidly becoming the standard setting for quantitative analysis,statistics and graphics. R provides free access to unrivalledcoverage and cutting-edge applications, enabling the user to applynumerous statistical methods ranging from simple regression to timeseries or multivariate analysis. Building on the success of the author’s bestsellingStatistics: An Introduction using R, The R Book ispacked with worked examples, providing an all inclusive guide to R,ideal for novice and more accomplished users alike. The bookassumes no background in statistics or computing and introduces theadvantages of the R environment, detailing its applications in awide range of disciplines. Provides the first comprehensive reference manual for the Rlanguage, including practical guidance and full coverage of thegraphics facilities. Introduces all the statistical models covered by R, beginningwith simple classical tests such as chi-square and t-test. Proceeds to examine more advance methods, from regression andanalysis of variance, through to generalized linear models,generalized mixed models, time series, spatial statistics,multivariate statistics and much more. The R Book is aimed at undergraduates, postgraduates andprofessionals in science, engineering and medicine. It is alsoideal for students and professionals in statistics, economics,geography and the social sciences.

The Book of R

Download The Book of R PDF Online Free

Author :
Publisher : No Starch Press
ISBN 13 : 1593277792
Total Pages : 833 pages
Book Rating : 4.5/5 (932 download)

DOWNLOAD NOW!


Book Synopsis The Book of R by : Tilman M. Davies

Download or read book The Book of R written by Tilman M. Davies and published by No Starch Press. This book was released on 2016-07-16 with total page 833 pages. Available in PDF, EPUB and Kindle. Book excerpt: The Book of R is a comprehensive, beginner-friendly guide to R, the world’s most popular programming language for statistical analysis. Even if you have no programming experience and little more than a grounding in the basics of mathematics, you’ll find everything you need to begin using R effectively for statistical analysis. You’ll start with the basics, like how to handle data and write simple programs, before moving on to more advanced topics, like producing statistical summaries of your data and performing statistical tests and modeling. You’ll even learn how to create impressive data visualizations with R’s basic graphics tools and contributed packages, like ggplot2 and ggvis, as well as interactive 3D visualizations using the rgl package. Dozens of hands-on exercises (with downloadable solutions) take you from theory to practice, as you learn: –The fundamentals of programming in R, including how to write data frames, create functions, and use variables, statements, and loops –Statistical concepts like exploratory data analysis, probabilities, hypothesis tests, and regression modeling, and how to execute them in R –How to access R’s thousands of functions, libraries, and data sets –How to draw valid and useful conclusions from your data –How to create publication-quality graphics of your results Combining detailed explanations with real-world examples and exercises, this book will provide you with a solid understanding of both statistics and the depth of R’s functionality. Make The Book of R your doorway into the growing world of data analysis.

Introductory Statistics with R

Download Introductory Statistics with R PDF Online Free

Author :
Publisher : Springer Science & Business Media
ISBN 13 : 0387790543
Total Pages : 364 pages
Book Rating : 4.3/5 (877 download)

DOWNLOAD NOW!


Book Synopsis Introductory Statistics with R by : Peter Dalgaard

Download or read book Introductory Statistics with R written by Peter Dalgaard and published by Springer Science & Business Media. This book was released on 2008-06-27 with total page 364 pages. Available in PDF, EPUB and Kindle. Book excerpt: This book provides an elementary-level introduction to R, targeting both non-statistician scientists in various fields and students of statistics. The main mode of presentation is via code examples with liberal commenting of the code and the output, from the computational as well as the statistical viewpoint. Brief sections introduce the statistical methods before they are used. A supplementary R package can be downloaded and contains the data sets. All examples are directly runnable and all graphics in the text are generated from the examples. The statistical methodology covered includes statistical standard distributions, one- and two-sample tests with continuous data, regression analysis, one-and two-way analysis of variance, regression analysis, analysis of tabular data, and sample size calculations. In addition, the last four chapters contain introductions to multiple linear regression analysis, linear models in general, logistic regression, and survival analysis.

Data Mining

Download Data Mining PDF Online Free

Author :
Publisher : CRC Press
ISBN 13 : 1498763987
Total Pages : 530 pages
Book Rating : 4.4/5 (987 download)

DOWNLOAD NOW!


Book Synopsis Data Mining by : Richard J. Roiger

Download or read book Data Mining written by Richard J. Roiger and published by CRC Press. This book was released on 2017-01-06 with total page 530 pages. Available in PDF, EPUB and Kindle. Book excerpt: Provides in-depth coverage of basic and advanced topics in data mining and knowledge discovery Presents the most popular data mining algorithms in an easy to follow format Includes instructional tutorials on applying the various data mining algorithms Provides several interesting datasets ready to be mined Offers in-depth coverage of RapidMiner Studio and Weka’s Explorer interface Teaches the reader (student,) hands-on, about data mining using RapidMiner Studio and Weka Gives instructors a wealth of helpful resources, including all RapidMiner processes used for the tutorials and for solving the end of chapter exercises. Instructors will be able to get off the starting block with minimal effort Extra resources include screenshot sequences for all RapidMiner and Weka tutorials and demonstrations, available for students and instructors alike The latest version of all freely available materials can also be downloaded at: http://krypton.mnsu.edu/~sa7379bt/

R Packages

Download R Packages PDF Online Free

Author :
Publisher : "O'Reilly Media, Inc."
ISBN 13 : 1491910542
Total Pages : 275 pages
Book Rating : 4.4/5 (919 download)

DOWNLOAD NOW!


Book Synopsis R Packages by : Hadley Wickham

Download or read book R Packages written by Hadley Wickham and published by "O'Reilly Media, Inc.". This book was released on 2015-03-26 with total page 275 pages. Available in PDF, EPUB and Kindle. Book excerpt: Turn your R code into packages that others can easily download and use. This practical book shows you how to bundle reusable R functions, sample data, and documentation together by applying author Hadley Wickham’s package development philosophy. In the process, you’ll work with devtools, roxygen, and testthat, a set of R packages that automate common development tasks. Devtools encapsulates best practices that Hadley has learned from years of working with this programming language. Ideal for developers, data scientists, and programmers with various backgrounds, this book starts you with the basics and shows you how to improve your package writing over time. You’ll learn to focus on what you want your package to do, rather than think about package structure. Learn about the most useful components of an R package, including vignettes and unit tests Automate anything you can, taking advantage of the years of development experience embodied in devtools Get tips on good style, such as organizing functions into files Streamline your development process with devtools Learn the best way to submit your package to the Comprehensive R Archive Network (CRAN) Learn from a well-respected member of the R community who created 30 R packages, including ggplot2, dplyr, and tidyr

Primer on Cerebrovascular Diseases

Download Primer on Cerebrovascular Diseases PDF Online Free

Author :
Publisher : Academic Press
ISBN 13 : 0127431705
Total Pages : 855 pages
Book Rating : 4.1/5 (274 download)

DOWNLOAD NOW!


Book Synopsis Primer on Cerebrovascular Diseases by : K. Michael Welch

Download or read book Primer on Cerebrovascular Diseases written by K. Michael Welch and published by Academic Press. This book was released on 1997-04-24 with total page 855 pages. Available in PDF, EPUB and Kindle. Book excerpt: Primer on Cerebrovascular Diseases is a handy reference source for scientists, students, and physicians needing reliable, up-to-date information on basic mechanisms, physiology, pathophysiology, and medical issues related to brain vasculature. The book consists of short, specific chapters written by international experts on cerebral vasculature, and presents the information in a comprehensive and easily accessible manner. The book also contains valuable information on practical applications of basic research. Presents topics in a comprehensive and accessible format Written by international authorities on cerebral vasculature Provides practical applications for researchers

A Primer of Ecology with R

Download A Primer of Ecology with R PDF Online Free

Author :
Publisher : Springer Science & Business Media
ISBN 13 : 0387898824
Total Pages : 404 pages
Book Rating : 4.3/5 (878 download)

DOWNLOAD NOW!


Book Synopsis A Primer of Ecology with R by : M. Henry Stevens

Download or read book A Primer of Ecology with R written by M. Henry Stevens and published by Springer Science & Business Media. This book was released on 2009-06-02 with total page 404 pages. Available in PDF, EPUB and Kindle. Book excerpt: Provides simple explanations of the important concepts in population and community ecology. Provides R code throughout, to illustrate model development and analysis, as well as appendix introducing the R language. Interweaves ecological content and code so that either stands alone. Supplemental web site for additional code.

The R Primer

Download The R Primer PDF Online Free

Author :
Publisher : CRC Press
ISBN 13 : 1439862060
Total Pages : 301 pages
Book Rating : 4.4/5 (398 download)

DOWNLOAD NOW!


Book Synopsis The R Primer by : Claus Thorn Ekstrom

Download or read book The R Primer written by Claus Thorn Ekstrom and published by CRC Press. This book was released on 2011-08-29 with total page 301 pages. Available in PDF, EPUB and Kindle. Book excerpt: Newcomers to R are often intimidated by the command-line interface, the vast number of functions and packages, or the processes of importing data and performing a simple statistical analysis. The R Primer provides a collection of concise examples and solutions to R problems frequently encountered by new users of this statistical software. Rather than explore the many options available for every command as well as the ever-increasing number of packages, the book focuses on the basics of data preparation and analysis and gives examples that can be used as a starting point. The numerous examples illustrate a specific situation, topic, or problem, including data importing, data management, classical statistical analyses, and high-quality graphics production. Each example is self-contained and includes R code that can be run exactly as shown, enabling results from the book to be replicated. While base R is used throughout, other functions or packages are listed if they cover or extend the functionality. After working through the examples found in this text, new users of R will be able to better handle data analysis and graphics applications in R. Additional topics and R code are available from the book’s supporting website at www.statistics.life.ku.dk/primer/

C++ Primer

Download C++ Primer PDF Online Free

Author :
Publisher : Addison-Wesley
ISBN 13 : 0133053032
Total Pages : 3072 pages
Book Rating : 4.1/5 (33 download)

DOWNLOAD NOW!


Book Synopsis C++ Primer by : Stanley B. Lippman

Download or read book C++ Primer written by Stanley B. Lippman and published by Addison-Wesley. This book was released on 2012-08-06 with total page 3072 pages. Available in PDF, EPUB and Kindle. Book excerpt: Bestselling Programming Tutorial and Reference Completely Rewritten for the New C++11 Standard Fully updated and recast for the newly released C++11 standard, this authoritative and comprehensive introduction to C++ will help you to learn the language fast, and to use it in modern, highly effective ways. Highlighting today’s best practices, the authors show how to use both the core language and its standard library to write efficient, readable, and powerful code. C++ Primer, Fifth Edition, introduces the C++ standard library from the outset, drawing on its common functions and facilities to help you write useful programs without first having to master every language detail. The book’s many examples have been revised to use the new language features and demonstrate how to make the best use of them. This book is a proven tutorial for those new to C++, an authoritative discussion of core C++ concepts and techniques, and a valuable resource for experienced programmers, especially those eager to see C++11 enhancements illuminated. Start Fast and Achieve More Learn how to use the new C++11 language features and the standard library to build robust programs quickly, and get comfortable with high-level programming Learn through examples that illuminate today’s best coding styles and program design techniques Understand the “rationale behind the rules”: why C++11 works as it does Use the extensive crossreferences to help you connect related concepts and insights Benefit from up-to-date learning aids and exercises that emphasize key points, help you to avoid pitfalls, promote good practices, and reinforce what you’ve learned Access the source code for the extended examples from informit.com/title/0321714113 C++ Primer, Fifth Edition, features an enhanced, layflat binding, which allows the book to stay open more easily when placed on a flat surface. This special binding method—notable by a small space inside the spine—also increases durability.

Statistics

Download Statistics PDF Online Free

Author :
Publisher : John Wiley & Sons
ISBN 13 : 9780470022986
Total Pages : 348 pages
Book Rating : 4.0/5 (229 download)

DOWNLOAD NOW!


Book Synopsis Statistics by : Michael J. Crawley

Download or read book Statistics written by Michael J. Crawley and published by John Wiley & Sons. This book was released on 2005-05-06 with total page 348 pages. Available in PDF, EPUB and Kindle. Book excerpt: Computer software is an essential tool for many statistical modelling and data analysis techniques, aiding in the implementation of large data sets in order to obtain useful results. R is one of the most powerful and flexible statistical software packages available, and enables the user to apply a wide variety of statistical methods ranging from simple regression to generalized linear modelling. Statistics: An Introduction using R is a clear and concise introductory textbook to statistical analysis using this powerful and free software, and follows on from the success of the author's previous best-selling title Statistical Computing. * Features step-by-step instructions that assume no mathematics, statistics or programming background, helping the non-statistician to fully understand the methodology. * Uses a series of realistic examples, developing step-wise from the simplest cases, with the emphasis on checking the assumptions (e.g. constancy of variance and normality of errors) and the adequacy of the model chosen to fit the data. * The emphasis throughout is on estimation of effect sizes and confidence intervals, rather than on hypothesis testing. * Covers the full range of statistical techniques likely to be need to analyse the data from research projects, including elementary material like t-tests and chi-squared tests, intermediate methods like regression and analysis of variance, and more advanced techniques like generalized linear modelling. * Includes numerous worked examples and exercises within each chapter. * Accompanied by a website featuring worked examples, data sets, exercises and solutions: http://www.imperial.ac.uk/bio/research/crawley/statistics Statistics: An Introduction using R is the first text to offer such a concise introduction to a broad array of statistical methods, at a level that is elementary enough to appeal to a broad range of disciplines. It is primarily aimed at undergraduate students in medicine, engineering, economics and biology - but will also appeal to postgraduates who have not previously covered this area, or wish to switch to using R.

A Mathematical Primer for Social Statistics

Download A Mathematical Primer for Social Statistics PDF Online Free

Author :
Publisher : SAGE Publications
ISBN 13 : 1071833243
Total Pages : 199 pages
Book Rating : 4.0/5 (718 download)

DOWNLOAD NOW!


Book Synopsis A Mathematical Primer for Social Statistics by : John Fox

Download or read book A Mathematical Primer for Social Statistics written by John Fox and published by SAGE Publications. This book was released on 2021-01-11 with total page 199 pages. Available in PDF, EPUB and Kindle. Book excerpt: A Mathematical Primer for Social Statistics, Second Edition presents mathematics central to learning and understanding statistical methods beyond the introductory level: the basic "language" of matrices and linear algebra and its visual representation, vector geometry; differential and integral calculus; probability theory; common probability distributions; statistical estimation and inference, including likelihood-based and Bayesian methods. The volume concludes by applying mathematical concepts and operations to a familiar case, linear least-squares regression. The Second Edition pays more attention to visualization, including the elliptical geometry of quadratic forms and its application to statistics. It also covers some new topics, such as an introduction to Markov-Chain Monte Carlo methods, which are important in modern Bayesian statistics. A companion website includes materials that enable readers to use the R statistical computing environment to reproduce and explore computations and visualizations presented in the text. The book is an excellent companion to a "math camp" or a course designed to provide foundational mathematics needed to understand relatively advanced statistical methods.

C++ Primer Plus

Download C++ Primer Plus PDF Online Free

Author :
Publisher : Addison-Wesley Professional
ISBN 13 : 0321776402
Total Pages : 1435 pages
Book Rating : 4.3/5 (217 download)

DOWNLOAD NOW!


Book Synopsis C++ Primer Plus by : Stephen Prata

Download or read book C++ Primer Plus written by Stephen Prata and published by Addison-Wesley Professional. This book was released on 2011-10-18 with total page 1435 pages. Available in PDF, EPUB and Kindle. Book excerpt: C++ Primer Plus, Sixth Edition New C++11 Coverage C++ Primer Plus is a carefully crafted, complete tutorial on one of the most significant and widely used programming languages today. An accessible and easy-to-use self-study guide, this book is appropriate for both serious students of programming as well as developers already proficient in other languages. The sixth edition of C++ Primer Plus has been updated and expanded to cover the latest developments in C++, including a detailed look at the new C++11 standard. Author and educator Stephen Prata has created an introduction to C++ that is instructive, clear, and insightful. Fundamental programming concepts are explained along with details of the C++ language. Many short, practical examples illustrate just one or two concepts at a time, encouraging readers to master new topics by immediately putting them to use. Review questions and programming exercises at the end of each chapter help readers zero in on the most critical information and digest the most difficult concepts. In C++ Primer Plus, you’ll find depth, breadth, and a variety of teaching techniques and tools to enhance your learning: A new detailed chapter on the changes and additional capabilities introduced in the C++11 standard Complete, integrated discussion of both basic C language and additional C++ features Clear guidance about when and why to use a feature Hands-on learning with concise and simple examples that develop your understanding a concept or two at a time Hundreds of practical sample programs Review questions and programming exercises at the end of each chapter to test your understanding Coverage of generic C++ gives you the greatest possible flexibility Teaches the ISO standard, including discussions of templates, the Standard Template Library, the string class, exceptions, RTTI, and namespaces Table of Contents 1: Getting Started with C++ 2: Setting Out to C++ 3: Dealing with Data 4: Compound Types 5: Loops and Relational Expressions 6: Branching Statements and Logical Operators 7: Functions: C++’s Programming Modules 8: Adventures in Functions 9: Memory Models and Namespaces 10: Objects and Classes 11: Working with Classes 12: Classes and Dynamic Memory Allocation 13: Class Inheritance 14: Reusing Code in C++ 15: Friends, Exceptions, and More 16: The string Class and the Standard Template Library 17: Input, Output, and Files 18: The New C++11 Standard A Number Bases B C++ Reserved Words C The ASCII Character Set D Operator Precedence E Other Operators F The stringTemplate Class G The Standard Template Library Methods and Functions H Selected Readings and Internet Resources I Converting to ISO Standard C++ J Answers to Chapter Reviews

A Beginner's Guide to R

Download A Beginner's Guide to R PDF Online Free

Author :
Publisher : Springer Science & Business Media
ISBN 13 : 0387938370
Total Pages : 228 pages
Book Rating : 4.3/5 (879 download)

DOWNLOAD NOW!


Book Synopsis A Beginner's Guide to R by : Alain Zuur

Download or read book A Beginner's Guide to R written by Alain Zuur and published by Springer Science & Business Media. This book was released on 2009-06-24 with total page 228 pages. Available in PDF, EPUB and Kindle. Book excerpt: Based on their extensive experience with teaching R and statistics to applied scientists, the authors provide a beginner's guide to R. To avoid the difficulty of teaching R and statistics at the same time, statistical methods are kept to a minimum. The text covers how to download and install R, import and manage data, elementary plotting, an introduction to functions, advanced plotting, and common beginner mistakes. This book contains everything you need to know to get started with R.

A Primer of Real Analytic Functions

Download A Primer of Real Analytic Functions PDF Online Free

Author :
Publisher : Birkhäuser
ISBN 13 : 3034876440
Total Pages : 190 pages
Book Rating : 4.0/5 (348 download)

DOWNLOAD NOW!


Book Synopsis A Primer of Real Analytic Functions by : KRANTZ

Download or read book A Primer of Real Analytic Functions written by KRANTZ and published by Birkhäuser. This book was released on 2013-03-09 with total page 190 pages. Available in PDF, EPUB and Kindle. Book excerpt: The subject of real analytic functions is one of the oldest in mathe matical analysis. Today it is encountered early in ones mathematical training: the first taste usually comes in calculus. While most work ing mathematicians use real analytic functions from time to time in their work, the vast lore of real analytic functions remains obscure and buried in the literature. It is remarkable that the most accessible treatment of Puiseux's theorem is in Lefschetz's quite old Algebraic Geometry, that the clearest discussion of resolution of singularities for real analytic manifolds is in a book review by Michael Atiyah, that there is no comprehensive discussion in print of the embedding prob lem for real analytic manifolds. We have had occasion in our collaborative research to become ac quainted with both the history and the scope of the theory of real analytic functions. It seems both appropriate and timely for us to gather together this information in a single volume. The material presented here is of three kinds. The elementary topics, covered in Chapter 1, are presented in great detail. Even results like a real ana lytic inverse function theorem are difficult to find in the literature, and we take pains here to present such topics carefully. Topics of middling difficulty, such as separate real analyticity, Puiseux series, the FBI transform, and related ideas (Chapters 2-4), are covered thoroughly but rather more briskly.