Phranakorn Rajabhat University Library

Managerial statistics /

Keller, Gerald

Managerial statistics / Gerald Keller - 8th ed. - Mason, Ohio : South-Western Cengage Learning, 2008 - xxii, 899 p. : ill. ; 25 cm.

1. What is statistics? page 1-10 -- 2. Graphical and tabular descriptive techniques page 11-78 -- 3. Art and science of graphical presentations page 79-95 -- 4. Numerical descriptive techniques page 96-154 -- 5. Data collection and sampling page 155-168 -- 6.Probability page 169-208 -- 7. Random variables and discrete probability distributions page 209-251 -- 8. Continuous probability distributions page 252-294 -- 9. Sampling distributions page 295-320 -- 10. Introduction to estimation page 321-343 -- 11. Introduction to hypothesis testing page 344-380 -- 12. Inference about a population page 381-437 -- 13. Inference about comparing two populations page 438-512 -- 14. Analysis of variance page 513-579 -- 15. Chi-Squared tests page 580-614 -- 16. Simple linear regression and correlation page 615-670 -- 17. Multiple regression page 671-714 -- 18. Model building page 715-752 -- 19. Nonparametric statistics page 753-818 -- 20. Time-series analysis and forecasting page 819-848 -- 21. Statistical process control page 849-876 -- 22. Decision analysis page 877-896 -- 23. Conclusion page 897-899

9780324569551 0324569556


STATISTICS
MANAGERIAL STATISTICS
ECONOMICS--STATISTICAL METHODS

HD 30.215 / K44M 2008

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });