دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: نویسندگان: Max Kuhn, Julia Silge سری: ISBN (شابک) : 9781492096481 ناشر: O'Reilly Media, Inc. سال نشر: 2022 تعداد صفحات: زبان: English فرمت فایل : EPUB (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) حجم فایل: 19 Mb
در صورت تبدیل فایل کتاب Tidy Modeling with R به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب مدلسازی مرتب با R نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
مدلها را میتوان تقریباً در هر حوزهای برای مقاصدی از جمله پیشبینی، استنتاج یا توصیف ساده دادهها استفاده کرد. در تمام این موارد می توان از ظرفیت پیش بینی یک مدل برای ارزیابی آن استفاده کرد و با رعایت رویه آماری خوب می توانیم مدل های بهتر و مفیدتری بسازیم. چارچوب tidymodels رابطهای مدل ناهمگن را در R هماهنگ میکند و یک چارچوب سازگار و انعطافپذیر برای مدلسازی مناسب برای مبتدیان و همچنین افراد بسیار با تجربه ارائه میدهد. این کتاب مقدمه ای عملی برای نحوه استفاده از نرم افزار R برای ایجاد مدل ها با تمرکز بر گویش زبان برنامه نویسی R به نام tidyverse ارائه می دهد. نرمافزاری که از اصول مرتب و مرتب استفاده میکند، دارای فلسفه طراحی سطح بالا و گرامر و ساختار دادههای سطح پایین است، بنابراین یادگیری یک بخش از اکوسیستم، یادگیری بخش بعدی را آسانتر میکند. چارچوب tidymodels برای مدلسازی به گونهای ساخته شده است که به راحتی توسط طیف وسیعی از افراد قابل درک و استفاده باشد.
Models can be used in almost any domain for purposes including prediction, inference, or simply describing data. In all these cases, the predictive capacity of a model can be used to evaluate it, and we can build better, more useful models by adhering to good statistical practice. The tidymodels framework harmonizes the heterogeneous model interfaces in R and offers a consistent, flexible framework for modeling suitable for beginners as well as the very experienced. This book provides a practical introduction to how to use R software to create models, focusing on a dialect of the R programming language called the tidyverse. Software that adopts tidyverse principles shares a high-level design philosophy and low-level grammar and data structures, so learning one piece of the ecosystem makes it easier to learn the next. The tidymodels framework for modeling is built to be easily understood and used by a broad range of people.
Preface Conventions Used in This Book Using Code Examples O’Reilly Online Learning How to Contact Us Acknowledgments I. Introduction 1. Software for Modeling Fundamentals for Modeling Software Types of Models Descriptive Models Inferential Models Predictive Models Connections Between Types of Models Some Terminology How Does Modeling Fit into the Data Analysis Process? Chapter Summary 2. A Tidyverse Primer Tidyverse Principles Design for Humans Reuse Existing Data Structures Design for the Pipe and Functional Programming Examples of Tidyverse Syntax Chapter Summary 3. A Review of R Modeling Fundamentals An Example What Does the R Formula Do? Why Tidiness Is Important for Modeling Combining Base R Models and the Tidyverse The tidymodels Metapackage Chapter Summary II. Modeling Basics 4. The Ames Housing Data Exploring Features of Homes in Ames Chapter Summary 5. Spending Our Data Common Methods for Splitting Data What About a Validation Set? Multilevel Data Other Considerations for a Data Budget Chapter Summary 6. Fitting Models with parsnip Create a Model Use the Model Results Make Predictions parsnip-Extension Packages Creating Model Specifications Chapter Summary 7. A Model Workflow Where Does the Model Begin and End? Workflow Basics Adding Raw Variables to the workflow() How Does a workflow() Use the Formula? Tree-Based Models Special Formulas and Inline Functions Creating Multiple Workflows at Once Evaluating the Test Set Chapter Summary 8. Feature Engineering with Recipes A Simple recipe() for the Ames Housing Data Using Recipes How Data Are Used by the recipe() Examples of Steps Encoding Qualitative Data in a Numeric Format Interaction Terms Spline Functions Feature Extraction Row Sampling Steps General Transformations Natural Language Processing Skipping Steps for New Data Tidy a recipe() Column Roles Chapter Summary 9. Judging Model Effectiveness Performance Metrics and Inference Regression Metrics Binary Classification Metrics Multiclass Classification Metrics Chapter Summary III. Tools for Creating Effective Models 10. Resampling for Evaluating Performance The Resubstitution Approach Resampling Methods Cross-Validation Repeated Cross-Validation Leave-One-Out Cross-Validation Monte Carlo Cross-Validation Validation Sets Bootstrapping Rolling Forecasting Origin Resampling Estimating Performance Parallel Processing Saving the Resampled Objects Chapter Summary 11. Comparing Models with Resampling Creating Multiple Models with Workflow Sets Comparing Resampled Performance Statistics Simple Hypothesis Testing Methods Bayesian Methods A Random Intercept Model The Effect of the Amount of Resampling Chapter Summary 12. Model Tuning and the Dangers of Overfitting Model Parameters Tuning Parameters for Different Types of Models What Do We Optimize? The Consequences of Poor Parameter Estimates Two General Strategies for Optimization Tuning Parameters in tidymodels Chapter Summary 13. Grid Search Regular and Nonregular Grids Regular Grids Nonregular Grids Evaluating the Grid Finalizing the Model Tools for Creating Tuning Specifications Tools for Efficient Grid Search Submodel Optimization Parallel Processing Benchmarking Boosted Trees Access to Global Variables Racing Methods Chapter Summary 14. Iterative Search A Support Vector Machine Model Bayesian Optimization A Gaussian Process Model Acquisition Functions The tune_bayes() Function Simulated Annealing Simulated Annealing Search Process The tune_sim_anneal() Function Chapter Summary 15. Screening Many Models Modeling Concrete Mixture Strength Creating the Workflow Set Tuning and Evaluating the Models Efficiently Screening Models Finalizing a Model Chapter Summary IV. Beyond the Basics 16. Dimensionality Reduction What Problems Can Dimensionality Reduction Solve? A Picture Is Worth a Thousand…Beans A Starter Recipe Recipes in the Wild Preparing a Recipe Baking the Recipe Feature Extraction Techniques Principal Component Analysis Partial Least Squares Independent Component Analysis Uniform Manifold Approximation and Projection Modeling Chapter Summary 17. Encoding Categorical Data Is an Encoding Necessary? Encoding Ordinal Predictors Using the Outcome for Encoding Predictors Effect Encodings in tidymodels Effect Encodings with Partial Pooling Feature Hashing More Encoding Options Chapter Summary 18. Explaining Models and Predictions Software for Model Explanations Local Explanations Global Explanations Building Global Explanations from Local Explanations Back to Beans! Chapter Summary 19. When Should You Trust Your Predictions? Equivocal Results Determining Model Applicability Chapter Summary 20. Ensembles of Models Creating the Training Set for Stacking Blend the Predictions Fit the Member Models Test Set Results Chapter Summary 21. Inferential Analysis Inference for Count Data Comparisons with Two-Sample Tests Log-Linear Models A More Complex Model More Inferential Analysis Chapter Summary A. Recommended Preprocessing References Index About the Authors