Applied Univariate, Bivariate, and Multivariate Statistics Using Python
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Home > Mathematics and Science Textbooks > Mathematics > Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis
Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis

Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis


     5  |  1 Reviews 
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

Applied Univariate, Bivariate, and Multivariate Statistics Using Python A practical, “how-to” reference for anyone performing essential statistical analyses and data management tasks in Python Applied Univariate, Bivariate, and Multivariate Statistics Using Python delivers a comprehensive introduction to a wide range of statistical methods performed using Python in a single, one-stop reference. The book contains user-friendly guidance and instructions on using Python to run a variety of statistical procedures without getting bogged down in unnecessary theory. Throughout, the author emphasizes a set of computational tools used in the discovery of empirical patterns, as well as several popular statistical analyses and data management tasks that can be immediately applied. Most of the datasets used in the book are small enough to be easily entered into Python manually, though they can also be downloaded for free from www.datapsyc.com. Only minimal knowledge of statistics is assumed, making the book perfect for those seeking an easily accessible toolkit for statistical analysis with Python. Applied Univariate, Bivariate, and Multivariate Statistics Using Python represents the fastest way to learn how to analyze data with Python. Readers will also benefit from the inclusion of: A review of essential statistical principles, including types of data, measurement, significance tests, significance levels, and type I and type II errors An introduction to Python, exploring how to communicate with Python A treatment of exploratory data analysis, basic statistics and visual displays, including frequencies and descriptives, q-q plots, box-and-whisker plots, and data management An introduction to topics such as ANOVA, MANOVA and discriminant analysis, regression, principal components analysis, factor analysis, cluster analysis, among others, exploring the nature of what these techniques can vs. cannot do on a methodological level Perfect for undergraduate and graduate students in the social, behavioral, and natural sciences, Applied Univariate, Bivariate, and Multivariate Statistics Using Python will also earn a place in the libraries of researchers and data analysts seeking a quick go-to resource for univariate, bivariate, and multivariate analysis in Python.

Table of Contents:
Preface xii 1 A Brief Introduction and Overview of Applied Statistics 1 1.1 How Statistical Inference Works 4 1.2 Statistics and Decision-Making 7 1.3 Quantifying Error Rates in Decision-Making: Type I and Type II Errors 8 1.4 Estimation of Parameters 9 1.5 Essential Philosophical Principles for Applied Statistics 11 1.6 Continuous vs. Discrete Variables 13 1.6.1 Continuity Is Not Always Clear-Cut 15 1.7 Using Abstract Systems to Describe Physical Phenomena: Understanding Numerical vs. Physical Differences 16 1.8 Data Analysis, Data Science, Machine Learning, Big Data 18 1.9 “Training” and “Testing” Models: What “Statistical Learning” Means in the Age of Machine Learning and Data Science 20 1.10 Where We Are Going From Here: How to Use This Book 22 Review Exercises 23 2 Introduction to Python and the Field of Computational Statistics 25 2.1 The Importance of Specializing in Statistics and Research, Not Python: Advice for Prioritizing Your Hierarchy 26 2.2 How to Obtain Python 28 2.3 Python Packages 29 2.4 Installing a New Package in Python 31 2.5 Computing z-Scores in Python 32 2.6 Building a Dataframe in Python: And Computing Some Statistical Functions 35 2.7 Importing a .txt or .csv File 38 2.8 Loading Data into Python 39 2.9 Creating Random Data in Python 40 2.10 Exploring Mathematics in Python 40 2.11 Linear and Matrix Algebra in Python: Mechanics of Statistical Analyses 41 2.11.1 Operations on Matrices 44 2.11.2 Eigenvalues and Eigenvectors 47 Review Exercises 48 3 Visualization in Python: Introduction to Graphs and Plots 50 3.1 Aim for Simplicity and Clarity in Tables and Graphs: Complexity is for Fools! 52 3.2 State Population Change Data 54 3.3 What Do the Numbers Tell Us? Clues to Substantive Theory 56 3.4 The Scatterplot 58 3.5 Correlograms 59 3.6 Histograms and Bar Graphs 61 3.7 Plotting Side-by-Side Histograms 62 3.8 Bubble Plots 63 3.9 Pie Plots 65 3.10 Heatmaps 66 3.11 Line Charts 68 3.12 Closing Thoughts 69 Review Exercises 70 4 Simple Statistical Techniques for Univariate and Bivariate Analyses 72 4.1 Pearson Product-Moment Correlation 73 4.2 A Pearson Correlation Does Not (Necessarily) Imply Zero Relationship 75 4.3 Spearman’s Rho 76 4.4 More General Comments on Correlation: Don’t Let a Correlation Impress You Too Much! 79 4.5 Computing Correlation in Python 80 4.6 T-Tests for Comparing Means 84 4.7 Paired-Samples t-Test in Python 88 4.8 Binomial Test 90 4.9 The Chi-Squared Distribution and Goodness-of-Fit Test 91 4.10 Contingency Tables 93 Review Exercises 94 5 Power, Effect Size, P-Values, and Estimating Required Sample Size Using Python 96 5.1 What Determines the Size of a P-Value? 96 5.2 How P-Values Are a Function of Sample Size 99 5.3 What is Effect Size? 100 5.4 Understanding Population Variability in the Context of Experimental Design 102 5.5 Where Does Power Fit into All of This? 103 5.6 Can You Have Too Much Power? Can a Sample Be Too Large? 104 5.7 Demonstrating Power Principles in Python: Estimating Power or Sample Size 106 5.8 Demonstrating the Influence of Effect Size 108 5.9 The Influence of Significance Levels on Statistical Power 108 5.10 What About Power and Hypothesis Testing in the Age of “Big Data”? 110 5.11 Concluding Comments on Power, Effect Size, and Significance Testing 111 Review Exercises 112 6 Analysis of Variance 113 6.1 T-Tests for Means as a “Special Case” of ANOVA 114 6.2 Why Not Do Several t-Tests? 116 6.3 Understanding ANOVA Through an Example 117 6.4 Evaluating Assumptions in ANOVA 121 6.5 ANOVA in Python 124 6.6 Effect Size for Teacher 125 6.7 Post-Hoc Tests Following the ANOVA F-Test 125 6.8 A Myriad of Post-Hoc Tests 127 6.9 Factorial ANOVA 129 6.10 Statistical Interactions 131 6.11 Interactions in the Sample Are a Virtual Guarantee: Interactions in the Population Are Not 133 6.12 Modeling the Interaction Term 133 6.13 Plotting Residuals 134 6.14 Randomized Block Designs and Repeated Measures 135 6.15 Nonparametric Alternatives 138 6.15.1 Revisiting What “Satisfying Assumptions” Means: A Brief Discussion and Suggestion of How to Approach the Decision Regarding Nonparametrics 140 6.15.2 Your Experience in the Area Counts 140 6.15.3 What If Assumptions Are Truly Violated? 141 6.15.4 Mann-Whitney U Test 144 6.15.5 Kruskal-Wallis Test as a Nonparametric Alternative to ANOVA 145 Review Exercises 147 7 Simple and Multiple Linear Regression 148 7.1 Why Use Regression? 150 7.2 The Least-Squares Principle 152 7.3 Regression as a “New” Least-Squares Line 153 7.4 The Population Least-Squares Regression Line 154 7.5 How to Estimate Parameters in Regression 155 7.6 How to Assess Goodness of Fit? 157 7.7 R2 – Coefficient of Determination 158 7.8 Adjusted R2 159 7.9 Regression in Python 161 7.10 Multiple Linear Regression 164 7.11 Defining the Multiple Regression Model 164 7.12 Model Specification Error 166 7.13 Multiple Regression in Python 167 7.14 Model-Building Strategies: Forward, Backward, Stepwise 168 7.15 Computer-Intensive “Algorithmic” Approaches 171 7.16 Which Approach Should You Adopt? 171 7.17 Concluding Remarks and Further Directions: Polynomial Regression 172 Review Exercises 174 8 Logistic Regression and the Generalized Linear Model 176 8.1 How Are Variables Best Measured? Are There Ideal Scales on Which a Construct Should Be Targeted? 178 8.2 The Generalized Linear Model 180 8.3 Logistic Regression for Binary Responses: A Special Subclass of the Generalized Linear Model 181 8.4 Logistic Regression in Python 184 8.5 Multiple Logistic Regression 188 8.5.1 A Model with Only Lag1 191 8.6 Further Directions 192 Review Exercises 192 9 Multivariate Analysis of Variance (MANOVA) and Discriminant Analysis 194 9.1 Why Technically Most Univariate Models are Actually Multivariate 195 9.2 Should I Be Running a Multivariate Model? 196 9.3 The Discriminant Function 198 9.4 Multivariate Tests of Significance: Why They Are Different from the F-Ratio 199 9.4.1 Wilks’ Lambda 200 9.4.2 Pillai’s Trace 201 9.4.3 Roy’s Largest Root 201 9.4.4 Lawley-Hotelling’s Trace 202 9.5 Which Multivariate Test to Use? 202 9.6 Performing MANOVA in Python 203 9.7 Effect Size for MANOVA 205 9.8 Linear Discriminant Function Analysis 205 9.9 How Many Discriminant Functions Does One Require? 207 9.10 Discriminant Analysis in Python: Binary Response 208 9.11 Another Example of Discriminant Analysis: Polytomous Classification 211 9.12 Bird’s Eye View of MANOVA, ANOVA, Discriminant Analysis, and Regression: A Partial Conceptual Unification 212 9.13 Models “Subsumed” Under the Canonical Correlation Framework 214 Review Exercises 216 10 Principal Components Analysis 218 10.1 What Is Principal Components Analysis? 218 10.2 Principal Components as Eigen Decomposition 221 10.3 PCA on Correlation Matrix 223 10.4 Why Icebergs Are Not Good Analogies for PCA 224 10.5 PCA in Python 226 10.6 Loadings in PCA: Making Substantive Sense Out of an Abstract Mathematical Entity 229 10.7 Naming Components Using Loadings: A Few Issues 230 10.8 Principal Components Analysis on USA Arrests Data 232 10.9 Plotting the Components 237 Review Exercises 240 11 Exploratory Factor Analysis 241 11.1 The Common Factor Analysis Model 242 11.2 Factor Analysis as a Reproduction of the Covariance Matrix 243 11.3 Observed vs. Latent Variables: Philosophical Considerations 244 11.4 So, Why is Factor Analysis Controversial? The Philosophical Pitfalls of Factor Analysis 247 11.5 Exploratory Factor Analysis in Python 248 11.6 Exploratory Factor Analysis on USA Arrests Data 250 Review Exercises 254 12 Cluster Analysis 255 12.1 Cluster Analysis vs. ANOVA vs. Discriminant Analysis 258 12.2 How Cluster Analysis Defines “Proximity” 259 12.2.1 Euclidean Distance 260 12.3 K-Means Clustering Algorithm 261 12.4 To Standardize or Not? 262 12.5 Cluster Analysis in Python 263 12.6 Hierarchical Clustering 266 12.7 Hierarchical Clustering in Python 268 Review Exercises 272 References 273 Index 276

About the Author :
Daniel J. Denis, PhD, is Professor of Quantitative Psychology at the University of Montana. He is author of Applied Univariate, Bivariate, and Multivariate Statistics and Applied Univariate, Bivariate, and Multivariate Statistics Using R.


Best Sellers


Product Details
  • ISBN-13: 9781119578185
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: Standards Information Network
  • Language: English
  • Sub Title: A Beginner's Guide to Advanced Data Analysis
  • ISBN-10: 1119578183
  • Publisher Date: 14 Jul 2021
  • Binding: Digital (delivered electronically)
  • No of Pages: 304


Similar Products

Add Photo
Add Photo

Customer Reviews

     5  |  1 Reviews 
out of (%) reviewers recommend this product
Top Reviews
Rating Snapshot
Select a row below to filter reviews.
5
4
3
2
1
Average Customer Ratings
     5  |  1 Reviews 
00 of 0 Reviews
Sort by :
Active Filters

00 of 0 Reviews
SEARCH RESULTS
1–2 of 2 Reviews
    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!

    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!


Sample text
Photo of
    Media Viewer

    Sample text
    Reviews
    Reader Type:
    BoxerLover2
    00 of 0 review

    Your review was submitted!
    Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis
    John Wiley & Sons Inc -
    Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis
    Writing guidlines
    We want to publish your review, so please:
    • keep your review on the product. Review's that defame author's character will be rejected.
    • Keep your review focused on the product.
    • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
    • Refrain from mentioning competitors or the specific price you paid for the product.
    • Do not include any personally identifiable information, such as full names.

    Applied Univariate, Bivariate, and Multivariate Statistics Using Python: A Beginner's Guide to Advanced Data Analysis

    Required fields are marked with *

    Review Title*
    Review
      Add Photo Add up to 6 photos
      Would you recommend this product to a friend?
      Tag this Book Read more
      Does your review contain spoilers?
      What type of reader best describes you?
      I agree to the terms & conditions
      You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

      CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

      These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


      By submitting any content to Bookswagon, you guarantee that:
      • You are the sole author and owner of the intellectual property rights in the content;
      • All "moral rights" that you may have in such content have been voluntarily waived by you;
      • All content that you post is accurate;
      • You are at least 13 years old;
      • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
      You further agree that you may not submit any content:
      • That is known by you to be false, inaccurate or misleading;
      • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
      • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
      • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
      • For which you were compensated or granted any consideration by any unapproved third party;
      • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
      • That contains any computer viruses, worms or other potentially damaging computer programs or files.
      You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


      For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


      All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

      Accept

      Fresh on the Shelf


      Inspired by your browsing history


      Your review has been submitted!

      You've already reviewed this product!