Data science and analytics with Python
Data Science and Analytics with Python is designed for practitioners in data science and data analytics in both academic and business environments. The aim is to present the reader with the main concepts used in data science using tools developed in Python, such as SciKit-learn, Pandas, Numpy, and o...
Saved in:
Main Author: | |
---|---|
Format: | eBook |
Language: | English |
Published: |
Boca Raton, FL :
CRC Press, Taylor & Francis Group,
[2017]
|
Series: | Chapman & Hall/CRC data mining and knowledge discovery series.
|
Subjects: | |
ISBN: | 9781315151670 1315151677 9781498742115 1498742114 9781523120000 1523120002 9781498742092 1498742092 9781138043176 1138043176 |
Physical Description: | 1 online resource (xxxv, 376 pages) |
LEADER | 06738cam a2200541 i 4500 | ||
---|---|---|---|
001 | kn-on1023861775 | ||
003 | OCoLC | ||
005 | 20240717213016.0 | ||
006 | m o d | ||
007 | cr cn||||||||| | ||
008 | 180222s2017 flua ob 001 0 eng d | ||
040 | |a N$T |b eng |e rda |e pn |c N$T |d OCLCO |d EBLCP |d YDX |d OCLCQ |d MERER |d CEF |d OCLCQ |d OCLCA |d WYU |d UAB |d KNOVL |d OCLCQ |d K6U |d OCLCO |d OCLCQ |d SFB |d OCLCQ |d OCLCO |d OCLCL | ||
020 | |a 9781315151670 |q (electronic bk.) | ||
020 | |a 1315151677 |q (electronic bk.) | ||
020 | |a 9781498742115 | ||
020 | |a 1498742114 | ||
020 | |a 9781523120000 |q (electronic bk.) | ||
020 | |a 1523120002 |q (electronic bk.) | ||
020 | |z 9781498742092 | ||
020 | |z 1498742092 | ||
020 | |z 9781138043176 | ||
020 | |z 1138043176 | ||
035 | |a (OCoLC)1023861775 |z (OCoLC)1022793752 |z (OCoLC)1089551308 | ||
100 | 1 | |a Rogel-Salazar, Jesus, |e author. | |
245 | 1 | 0 | |a Data science and analytics with Python / |c Jesus Rogel-Salazar. |
264 | 1 | |a Boca Raton, FL : |b CRC Press, Taylor & Francis Group, |c [2017] | |
300 | |a 1 online resource (xxxv, 376 pages) | ||
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 Chapman & Hall/CRC Data Mining and Knowledge Discovery Series | |
504 | |a Includes bibliographical references and index. | ||
505 | 0 | |a Cover; Half Title; Title Page; Copyright Page; Dedication; Table of Contents; List of Figures; List of Tables; Preface; Readerâ#x80;#x99;s Guide; About the Author; 1: Trials and Tribulations of a Data Scientist; 1.1 Data? Science? Data Science!; 1.1.1 So, What Is Data Science?; 1.2 The Data Scientist: A Modern Jackalope; 1.2.1 Characteristics of a Data Scientist and a Data Science Team; 1.3 Data Science Tools; 1.3.1 Open Source Tools; 1.4 From Data to Insight: the Data Science Workflow; 1.4.1 Identify the Question; 1.4.2 Acquire Data; 1.4.3 Data Munging; 1.4.4 Modelling and Evaluation. | |
505 | 8 | |a 1.4.5 Representation and Interaction1.4.6 Data Science: an Iterative Process; 1.5 Summary; 2: Python: For Something Completely Different; 2.1 Why Python? Why not?!; 2.1.1 To Shell or not To Shell; 2.1.2 iPython/Jupyter Notebook; 2.2 Firsts Slithers with Python; 2.2.1 Basic Types; 2.2.2 Numbers; 2.2.3 Strings; 2.2.4 Complex Numbers; 2.2.5 Lists; 2.2.6 Tuples; 2.2.7 Dictionaries; 2.3 Control Flow; 2.3.1 if ... elif ... else; 2.3.2 while; 2.3.3 for; 2.3.4 try ... except; 2.3.5 Functions; 2.3.6 Scripts and Modules; 2.4 Computation and Data Manipulation; 2.4.1 Matrix Manipulations and Linear Algebra. | |
505 | 8 | |a 2.4.2 NumPy Arrays and Matrices2.4.3 Indexing and Slicing; 2.5 Pandas to the Rescue; 2.6 Plotting and Visualising: Matplotlib; 2.7 Summary; 3: The Machine that Goes â#x80;#x9C;Pingâ#x80;#x9D;: Machine Learning and Pattern Recognition; 3.1 Recognising Patterns; 3.2 Artificial Intelligence and Machine Learning; 3.3 Data is Good, but other Things are also Needed; 3.4 Learning, Predicting and Classifying; 3.5 Machine Learning and Data Science; 3.6 Feature Selection; 3.7 Bias, Variance and Regularisation: A Balancing Act; 3.8 Some Useful Measures: Distance and Similarity; 3.9 Beware the Curse of Dimensionality. | |
505 | 8 | |a 3.10 Scikit-Learn is our Friend3.11 Training and Testing; 3.12 Cross-Validation; 3.12.1 k-fold Cross-Validation; 3.13 Summary; 4: The Relationship Conundrum: Regression; 4.1 Relationships between Variables: Regression; 4.2 Multivariate Linear Regression; 4.3 Ordinary Least Squares; 4.3.1 The Maths Way; 4.4 Brain and Body: Regression with One Variable; 4.4.1 Regression with Scikit-learn; 4.5 Logarithmic Transformation; 4.6 Making the Task Easier: Standardisation and Scaling; 4.6.1 Normalisation or Unit Scaling; 4.6.2 z-Score Scaling; 4.7 Polynomial Regression; 4.7.1 Multivariate Regression. | |
505 | 8 | |a 4.8 Variance-Bias Trade-Off4.9 Shrinkage: LASSO and Ridge; 4.10 Summary; 5: Jackalopes and Hares: Clustering; 5.1 Clustering; 5.2 Clustering with k-means; 5.2.1 Cluster Validation; 5.2.2 k-means in Action; 5.3 Summary; 6: Unicorns and Horses: Classification; 6.1 Classification; 6.1.1 Confusion Matrices; 6.1.2 ROC and AUC; 6.2 Classification with KNN; 6.2.1 KNN in Action; 6.3 Classification with Logistic Regression; 6.3.1 Logistic Regression Interpretation; 6.3.2 Logistic Regression in Action; 6.4 Classification with NaÃv̄e Bayes; 6.4.1 NaÃv̄e Bayes Classifier; 6.4.2 NaÃv̄e Bayes in Action. | |
506 | |a Plný text je dostupný pouze z IP adres počítačů Univerzity Tomáše Bati ve Zlíně nebo vzdáleným přístupem pro zaměstnance a studenty | ||
520 | |a Data Science and Analytics with Python is designed for practitioners in data science and data analytics in both academic and business environments. The aim is to present the reader with the main concepts used in data science using tools developed in Python, such as SciKit-learn, Pandas, Numpy, and others. The use of Python is of particular interest, given its recent popularity in the data science community. The book can be used by seasoned programmers and newcomers alike. The book is organized in a way that individual chapters are sufficiently independent from each other so that the reader is comfortable using the contents as a reference. The book discusses what data science and analytics are, from the point of view of the process and results obtained. Important features of Python are also covered, including a Python primer. The basic elements of machine learning, pattern recognition, and artificial intelligence that underpin the algorithms and implementations used in the rest of the book also appear in the first part of the book. Regression analysis using Python, clustering techniques, and classification algorithms are covered in the second part of the book. Hierarchical clustering, decision trees, and ensemble techniques are also explored, along with dimensionality reduction techniques and recommendation systems. The support vector machine algorithm and the Kernel trick are discussed in the last part of the book.-- |c Provided by Publisher. | ||
590 | |a Knovel |b Knovel (All titles) | ||
650 | 0 | |a Data mining. | |
650 | 0 | |a Python (Computer program language) | |
650 | 0 | |a Databases. | |
655 | 7 | |a elektronické knihy |7 fd186907 |2 czenas | |
655 | 9 | |a electronic books |2 eczenas | |
776 | 0 | 8 | |i Print version: |a Rogel-Salazar, Jesus. |t Data science and analytics with Python. |d Boca Raton, FL : CRC Press, Taylor & Francis Group, [2017] |z 9781498742092 |w (DLC) 2016057021 |w (OCoLC)967774880 |
830 | 0 | |a Chapman & Hall/CRC data mining and knowledge discovery series. | |
856 | 4 | 0 | |u https://proxy.k.utb.cz/login?url=https://app.knovel.com/hotlink/toc/id:kpDSAP0001/data-science-and?kpromoter=marc |y Full text |