Optimization Modelling Using R
Home > Science, Technology & Agriculture > Technology: general issues > Engineering: general > Optimization Modelling Using R
Optimization Modelling Using R

Optimization Modelling Using R

|
     0     
5
4
3
2
1




International Edition


About the Book

This book covers using R for doing optimization, a key area of operations research, which has been applied to virtually every industry. The focus is on linear and mixed integer optimization. It uses an algebraic modeling approach for creating formulations that pairs naturally with an algebraic implementation in R. With the rapid rise of interest in data analytics, a data analytics platform is key. Working technology and business professionals need an awareness of the tools and language of data analysis. R reduces the barrier to entry for people to start using data analytics tools. Philosophically, the book emphasizes creating formulations before going into implementation. Algebraic representation allows for clear understanding and generalization of large applications, and writing formulations is necessary to explain and convey the modeling decisions made. Appendix A introduces R. Mathematics is used at the level of subscripts and summations Refreshers are provided in Appendix B. This book: • Provides and explains code so examples are relatively clear and self-contained. • Emphasizes creating algebraic formulations before implementing. • Focuses on application rather than algorithmic details. • Embodies the philosophy of reproducible research. • Uses open-source tools to ensure access to powerful optimization tools. • Promotes open-source: all materials are available on the author’s github repository. • Demonstrates common debugging practices with a troubleshooting emphasis specific to optimization modeling using R. • Provides code readers can adapt to their own applications . This book can be used for graduate and undergraduate courses for students without a background in optimization and with varying mathematical backgrounds.

Table of Contents:
Preface 1 Introduction 1.1 What is Operations Research 1.2 Purpose of this Book 1.3 Range of Operations Research Techniques 1.4 Relationship between Operations Research and Analytics 1.5 Importance of Optimization 1.6 Why R? 1.7 Conventions Used in this Book 2 Introduction to Linear Programming 2.1 What is Linear Programming 2.2 Two Variable Base Case 2.3 Graphically Solving a Linear Program 2.4 Implementing and Solving with ompr 2.4.1 Preparing to Implement the Linear Program 2.4.2 Implementing the Base Case with Piping 2.5 Adding a Third Product (Variable) 2.5.1 Three Variable Base Case Formulation 2.5.2 Three Variable Base Case Implementation 2.5.3 Three Variable Case Results and Interpretation 2.6 Linear Programming Special Cases 2.6.1 Case 1: No Feasible Solution 2.6.2 Case 2: Multiple Optima 2.6.3 Case 3: Redundant Constraint 2.6.4 Case 4: Unbounded Solution 2.7 Abstracting the Production Planning Model 2.8 Methods of Solving Linear Programs 2.9 Exercises 3 More Linear Programming Models 3.1 Types of LP Models 3.2 The Algebraic Model 3.2.1 Tips and Conventions for Algebraic Models 3.2.2 Building the Generalized Model in R 3.2.3 Examining the Results 3.2.4 Changing the Model 3.3 Common Linear Programming Applications 3.3.1 Blending Problems 3.4 Allocation Models 3.4.1 Covering Models 3.4.2 Transportation Models 3.4.3 Transshipment Models 3.4.4 Production and Inventory Planning 3.4.5 Standard Form 3.5 Vector and Matrix Forms of LPs 3.6 Exercises 4 Sensitivity Analysis 4.1 Base Case 4.2 Shadow Prices 4.2.1 Extraction and Interpretation . 4.2.2 Example of Adding an Hour to Assembly 4.2.3 Shadow Prices of Underutilized Resources 4.3 Reduced Costs of Variables 4.3.1 Reduced Cost of Ants 4.3.2 Reduced Price of Bats 4.4 Using Sensitivity Analysis to Evaluate a New Product 4.5 Exercises 5 Data Envelopment Analysis 5.1 Introduction 5.2 Creating the Data 5.3 Graphical Analysis 5.4 The Linear Programs for DEA 5.4.1 An Explicit Linear Program for DEA 5.4.2 A Generalized Linear Program for DEA 5.5 Creating the LP - The Algebraic Approach 5.6 Returns to Scale 5.7 Multiple Inputs and Multiple Outputs 5.8 Extracting Multiplier Weights from Sensitivity Analysis 5.9 Slack Maximization 5.10 DEA Packages 5.11 DEA Model Building 5.11.1 Selection of Inputs and Outputs 5.11.2 Model Choices 5.11.3 Application Area Expertise 5.12 Further Reading 5.13 Exercises 6 Mixed Integer Optimization 6.1 Example of Minor Integrality Impact 6.2 Example of Major Integality Impact 6.3 The Branch and Bound Algorithm 6.3.1 The LP Relaxation 6.3.2 Subproblem I 6.3.3 Subproblem III 6.3.4 Subproblem IV 6.3.5 Subproblem V 6.3.6 Subproblem VI 6.3.7 Subproblem VII 6.3.8 Subproblem VIII 6.3.9 Subproblem II 6.4 Computational Complexity 6.4.1 Full Enumeration 6.5 Binary Variables and Logical Relations 6.6 Fixed Charge Models 6.6.1 Fixed Charge Example-Introduction 6.6.2 Linking Constraints with “Big M” 6.6.3 Fixed Charge Implementation 6.7 Model Results and Interpretation 7 More Integer Programming Models 7.1 Overview 7.2 Revisiting the Warehouse Location Problem 7.2.1 Implementing the Warehouse Model 7.2.2 Solving the Warehouse Location Problem 7.2.3 Warehouse Discussion 7.3 Solving MIPs with Different Solvers 7.3.1 Performance of glpk 7.3.2 Performance of symphony 7.3.3 Performance of lpsolve 7.3.4 Performance of gurobi 7.3.5 Comparing Results across Solvers 7.3.6 Popularity of LP Solvers 7.4 Solving Sudoku Puzzles using Optimization 7.4.1 Introduction to Sudoku and Optimization 7.4.2 Formulating the Sudoku Problem 7.4.3 Implementing Sudoku in ompr 7.4.4 Sudoku Discussion 7.5 Exercises 7.6 Production Planning over Time 7.6.1 Implementing the Model 7.7 Additional Exercises 8 Goal Programming 8.1 Introduction 8.2 Preemptive Goal Programming 8.3 Policies for Houselessness 8.4 Mass Mailings 8.4.1 Formulating the State Mailing Model 8.4.2 Implementing the State Mailing Model 8.4.3 Frontloading the Work 8.5 Exercises Appendix A A Very Brief Introduction to R A.1 Purpose A.2 Getting Started with R A.3 Exercises B Introduction to Math Notation B.1 Purpose B.2 Basic Summation Notation B.3 Using LaTeX in RMarkdown B.4 Inline Notation B.5 Sums B.6 Delimiters B.7 Summary of Mathematical Notations B.8 Sequences and Summation Notation B.9 Applications of Summation B.10 Double Summation B.11 Applications of Double Summation B.12 Exercises C Troubleshooting C.1 Overview C.2 Model Building C.2.1 Define and Formulate before Implementing C.2.2 Failing to Look for Past Optimization Models C.2.3 Misrendering of PDF C.2.4 Blank Lines in LaTeX C.2.5 Problems with PDF Creation C.3 Implementation Troubleshooting C.3.1 Errors in a Piped Model C.3.2 Undefined Object in ompr C.3.3 Unexpected Symbol in ompr C.3.4 Name Conflicts between R and ompr C.3.5 Blindly Reusing Code C.4 General Debugging Tips C.5 Getting Help D Making Good Tables 263 D.1 Importance of Tables in Modeling D.2 Kable vs. Kbl D.3 Table Footnotes with Kable D.4 Setting Row and Column Names in Kable D.5 Booktabs vs. Default D.6 Using LaTeX in Kable Column Names D.7 Fitting Tables to Page Width Bibliography Index


Best Sellers


Product Details
  • ISBN-13: 9781032290768
  • Publisher: Taylor & Francis Ltd
  • Publisher Imprint: Chapman & Hall/CRC
  • Height: 234 mm
  • No of Pages: 274
  • Width: 156 mm
  • ISBN-10: 1032290765
  • Publisher Date: 26 Aug 2024
  • Binding: Paperback
  • Language: English
  • Weight: 476 gr


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Optimization Modelling Using R
Taylor & Francis Ltd -
Optimization Modelling Using R
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.

Optimization Modelling Using R

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

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!