Python Data Analytics Data Analysis and Science using pandas, matplotlib and the Python Programming Language
Python Data Analytics will help you tackle the world of data acquisition and analysis using the power of the Python language. At the heart of this book lies the coverage of pandas, an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools fo...
Autor principal: | |
---|---|
Formato: | Libro electrónico |
Idioma: | Inglés |
Publicado: |
Berkeley, CA :
Apress
2015.
|
Edición: | 1st ed. 2015. |
Colección: | Expert's voice in Python.
|
Materias: | |
Ver en Biblioteca Universitat Ramon Llull: | https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009629717806719 |
Tabla de Contenidos:
- Contents at a Glance; Contents; About the Author; About the Technical Reviewer; Acknowledgments; Chapter 1: An Introduction to Data Analysis; Data Analysis; Knowledge Domains of the Data Analyst; Computer Science ; Mathematics and Statistics ; Machine Learning and Artificial Intelligence ; Professional Fields of Application ; Understanding the Nature of the Data; When the Data Become Information ; When the Information Becomes Knowledge ; Types of Data ; The Data Analysis Process ; Problem Definition ; Data Extraction ; Data Preparation ; Data Exploration/Visualization
- Predictive Modeling Model Validation ; Deployment ; Quantitative and Qualitative Data Analysis ; Open Data ; Python and Data Analysis ; Conclusions; Chapter 2: Introduction to the Python's World; Python-The Programming Language; Python-The Interpreter; Cython; Jython; PyPy; Python 2 and Python 3; Installing Python; Python Distributions; Anaconda; Enthought Canopy; Python(x,y); Using Python; Python Shell; Run an Entire Program Code; Implement the Code Using an IDE; Interact with Python; Writing Python Code; Make Calculations; Import New Libraries and Functions
- Data Structure Functional Programming (Only for Python 3.4); Indentation; IPython; IPython Shell; IPython Qt-Console; IPython Notebook; The Jupyter Project; PyPI-The Python Package Index; The IDEs for Python; IDLE (Integrated DeveLopment Environment); Spyder; Eclipse (pyDev); Sublime; Liclipse; NinjaIDE; Komodo IDE; SciPy; NumPy; Pandas; matplotlib; Conclusions; Chapter 3: The NumPy Library; NumPy: A Little History; The NumPy Installation; Ndarray: The Heart of the Library; Create an Array; Types of Data; The dtype Option; Intrinsic Crea tion of an Array
- Basic Operations Arit hmetic Operators; The M atrix Product; Increm ent and Decrement Operators; Universal Functions (ufunc); Aggregat e Functions; Indexing, Slicing, and Iterating; Indexing; Slicing; Iterating an Array; Conditions an d Boolean Arrays; Shape Manipulation; Array Manipulation; Joining Arrays; Splitting Arrays; General Concepts; Copies or Views of Objects; Vectorization; Broadcasting; Structured Arrays; Reading and Writing Array Data on Files; Loading and Saving Data in Binary Files; Reading File with T abular Data; Conclusions
- Chapter 4: The pandas Library-An Introduction pandas: The Python Data Analysis Library; Installation; Installation from Anaconda; Installation from PyPI; Installation on Linux ; Installation from Source; A Module Repository for Windows ; Test Your pandas Installation; Getting Started with pandas; Introduction to pandas Data Structures; The Series ; Declaring a Series ; Selecting the Internal Elements ; Assigning Values to the Elements; Defining Series from NumPy Arrays and Other Series; Filtering Values ; Operations and Mathematical Functions ; Evaluating Values ; NaN Values
- Series as Dictionaries