Cargando…

Machine learning with R : learn how to use R to apply powerful machine learning methods and gain an insight into real-world applications /

Written as a tutorial to explore and understand the power of R for machine learning. This practical guide that covers all of the need to know topics in a very systematic way. For each machine learning approach, each step in the process is detailed, from preparing the data for analysis to evaluating...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Lantz, Brett (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2013.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn862380117
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 131108t20132013enka of 001 0 eng d
040 |a IDEBK  |b eng  |e rda  |e pn  |c IDEBK  |d EBLCP  |d MHW  |d N$T  |d GZM  |d E7B  |d MEAUC  |d UMI  |d YDXCP  |d COO  |d DEBBG  |d DEBSZ  |d OCLCQ  |d OCLCF  |d KNOVL  |d OCLCQ  |d OCL  |d OCLCQ  |d AGLDB  |d ICA  |d LIP  |d ZCU  |d MERUC  |d OCLCQ  |d ESU  |d OCLCQ  |d JBG  |d D6H  |d VTS  |d CEF  |d ICG  |d NLE  |d DKU  |d UKMGB  |d OCLCQ  |d STF  |d UAB  |d DKC  |d AU@  |d OCLCQ  |d M8D  |d UKAHL  |d OCLCQ  |d OCL  |d OCLCQ  |d AJS  |d OCLCO  |d OCLCQ  |d OCLCO 
016 7 |a 018005240  |2 Uk 
019 |a 867904123  |a 869836286 
020 |a 9781782162155  |q (electronic bk.) 
020 |a 1782162151  |q (electronic bk.) 
020 |a 9781461949657  |q (electronic bk.) 
020 |a 1461949653  |q (electronic bk.) 
020 |a 1306070333  |q (electronic bk.) 
020 |a 9781306070331  |q (electronic bk.) 
020 |a 9781680153583  |q (electronic bk.) 
020 |a 1680153587  |q (electronic bk.) 
020 |z 1782162143 
020 |z 9781782162148 
029 1 |a AU@  |b 000052563146 
029 1 |a AU@  |b 000062431677 
029 1 |a AU@  |b 000067103054 
029 1 |a CHBIS  |b 010480681 
029 1 |a CHVBK  |b 336928491 
029 1 |a DEBBG  |b BV041633741 
029 1 |a DEBBG  |b BV041783609 
029 1 |a DEBBG  |b BV044062910 
029 1 |a DEBSZ  |b 404333001 
029 1 |a DEBSZ  |b 493131523 
029 1 |a NZ1  |b 15920693 
029 1 |a UKMGB  |b 018005240 
035 |a (OCoLC)862380117  |z (OCoLC)867904123  |z (OCoLC)869836286 
037 |a CL0500000359  |b Safari Books Online 
050 4 |a QA76.9.A25  |b L384 2013 
072 7 |a COM  |x 037000  |2 bisacsh 
072 7 |a COM  |x 000672  |2 bisacsh 
082 0 4 |a 005.8  |2 22 
049 |a UAMI 
100 1 |a Lantz, Brett,  |e author. 
245 1 0 |a Machine learning with R :  |b learn how to use R to apply powerful machine learning methods and gain an insight into real-world applications /  |c Brett Lantz. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2013. 
264 4 |c ©2013 
300 |a 1 online resource (vii, 375 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Open source. Community experience distilled 
588 0 |a Print version record. 
520 |a Written as a tutorial to explore and understand the power of R for machine learning. This practical guide that covers all of the need to know topics in a very systematic way. For each machine learning approach, each step in the process is detailed, from preparing the data for analysis to evaluating the results. These steps will build the knowledge you need to apply them to your own data science tasks. Intended for those who want to learn how to use R's machine learning capabilities and gain insight from your data. Perhaps you already know a bit about machine learning, but have never used R; or. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introducing Machine Learning; The origins of machine learning; Uses and abuses of machine learning; Ethical considerations; How do machines learn?; Abstraction and knowledge representation; Generalization; Assessing the success of learning; Steps to apply machine learning to your data; Choosing a machine learning algorithm; Thinking about the input data; Thinking about types of machine learning algorithms; Matching your data to an appropriate algorithm. 
505 8 |a Using R for machine learningInstalling and loading R packages; Installing an R package; Installing a package using the point-and-click interface; Loading an R package; Summary; Chapter 2: Managing and Understanding Data; R data structures; Vectors; Factors; Lists; Data frames; Matrixes and arrays; Managing data with R; Saving and loading R data structures; Importing and saving data from CSV files; Importing data from SQL databases; Exploring and understanding data; Exploring the structure of data; Exploring numeric variables; Measuring the central tendency -- mean and median. 
505 8 |a Measuring spread -- quartiles and the five-number summaryVisualizing numeric variables -- boxplots; Visualizing numeric variables -- histograms; Understanding numeric data -- uniform and normal distributions; Measuring spread -- variance and standard deviation; Exploring categorical variables; Measuring the central tendency -- the mode; Exploring relationships between variables; Visualizing relationships -- scatterplots; Examining relationships -- two-way cross-tabulations; Summary; Chapter 3: Lazy Learning -- Classification using Nearest Neighbors; Understanding classification using nearest neighbors. 
505 8 |a The kNN algorithmCalculating distance; Choosing an appropriate k; Preparing data for use with kNN; Why is the kNN algorithm lazy?; Diagnosing breast cancer with the kNN algorithm; Step 1 -- collecting data; Step 2 -- exploring and preparing the data; Transformation -- normalizing numeric data; Data preparation -- creating training and test datasets; Step 3 -- training a model on the data; Step 4 -- evaluating model performance; Step 5 -- improving model performance; Transformation -- z-score standardization; Testing alternative values of k; Summary. 
505 8 |a Chapter 4: Probabilistic Learning -- Classification using Naive BayesUnderstanding naive Bayes; Basic concepts of Bayesian methods; Probability; Joint probability; Conditional probability with Bayes' theorem; The naive Bayes algorithm; The naive Bayes classification; The Laplace estimator; Using numeric features with naive Bayes; Example -- filtering mobile phone spam with the naive Bayes algorithm; Step 1 -- collecting data; Step 2 -- exploring and preparing the data; Data preparation -- processing text data for analysis; Data preparation -- creating training and test datasets. 
505 8 |a Visualizing text data -- word clouds. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a R (Computer program language)  |v Handbooks, manuals, etc. 
650 0 |a Machine learning  |x Statistical methods  |v Handbooks, manuals, etc. 
650 6 |a R (Langage de programmation)  |v Guides, manuels, etc. 
650 6 |a Apprentissage automatique  |x Méthodes statistiques  |v Guides, manuels, etc. 
650 7 |a COMPUTERS  |x Machine Theory.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages.  |2 bisacsh 
650 7 |a Machine learning  |x Statistical methods  |2 fast 
650 7 |a R (Computer program language)  |2 fast 
655 7 |a handbooks.  |2 aat 
655 7 |a Handbooks and manuals  |2 fast 
655 7 |a Handbooks and manuals.  |2 lcgft 
655 7 |a Guides et manuels.  |2 rvmgf 
776 0 8 |i Print version:  |a Lantz, Brett.  |t Machine learning with R.  |d Birmingham : Packt Publishing Ltd., 2013  |z 9781782162148  |w (OCoLC)864393286 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=656222  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781782162148/?ar  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26849432 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL1343653 
938 |a ebrary  |b EBRY  |n ebr10794279 
938 |a EBSCOhost  |b EBSC  |n 656222 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis26536000 
938 |a YBP Library Services  |b YANK  |n 11318836 
938 |a YBP Library Services  |b YANK  |n 11319634 
994 |a 92  |b IZTAP