Pandas cookbook : (Record no. 267049)

MARC details
000 -LEADER
fixed length control field 08264 a2200229 4500
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20240524122136.0
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 240524b |||||||| |||| 00| 0 eng d
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781784393878
Qualifying information (pbk.)
041 ## - LANGUAGE CODE
Language code of text/sound track or separate title English
082 ## - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.133
Item number PET
100 ## - MAIN ENTRY--PERSONAL NAME
Personal name Petrou, Theodore
Relator term Author
9 (RLIN) 270530
245 ## - TITLE STATEMENT
Title Pandas cookbook :
Remainder of title recipes for scientific computing, time series analysis and data visualization using Python /
260 ## - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)
Place of publication, distribution, etc Birmingham :
Name of publisher, distributor, etc Packt Publishing,
Date of publication, distribution, etc 2017.
300 ## - PHYSICAL DESCRIPTION
Extent xv, 510 p. :
Other physical details ill. ;
Dimensions 26 cm.
500 ## - GENERAL NOTE
General note Includes index.
505 ## - FORMATTED CONTENTS NOTE
Formatted contents note Preface Packt --<br/>Preface --<br/>What this book covers --<br/>What you need for this book --<br/>Who this book is for --<br/>Conventions --<br/>Assumptions for every recipe --<br/>Dataset Descriptions --<br/>Sections --<br/>Reader feedback --<br/>Customer support --<br/>Pandas Foundations Packt --<br/>Pandas Foundations --<br/>Introduction --<br/>Dissecting the anatomy of a DataFrame --<br/>Accessing the main DataFrame components --<br/>Understanding data types --<br/>Selecting a single column of data as a Series --<br/>Calling Series methods --<br/>Working with operators on a Series --<br/>Chaining Series methods together --<br/>Making the index meaningful --<br/>Renaming row and column names --<br/>Creating and deleting columns --<br/>Essential DataFrame Operations Packt --<br/>Essential DataFrame Operations --<br/>Introduction --<br/>Selecting multiple DataFrame columns --<br/>Selecting columns with methods --<br/>Ordering column names sensibly --<br/>Operating on the entire DataFrame --<br/>Chaining DataFrame methods together --<br/>Working with operators on a DataFrame --<br/>Comparing missing values --<br/>Transposing the direction of a DataFrame operation --<br/>Determining college campus diversity --<br/>Beginning Data Analysis Packt --<br/>Beginning Data Analysis --<br/>Introduction --<br/>Developing a data analysis routine --<br/>Reducing memory by changing data types --<br/>Selecting the smallest of the largest --<br/>Selecting the largest of each group by sorting --<br/>Replicating nlargest with sort_values --<br/>Calculating a trailing stop order price --<br/>Selecting Subsets of Data Packt --<br/>Selecting Subsets of Data --<br/>Introduction --<br/>Selecting Series data --<br/>Selecting DataFrame rows --<br/>Selecting DataFrame rows and columns simultaneously --<br/>Selecting data with both integers and labels --<br/>Speeding up scalar selection --<br/>Slicing rows lazily --<br/>Slicing lexicographically --<br/>Boolean Indexing Packt --<br/>Boolean Indexing --<br/>Introduction --<br/>Calculating boolean statistics --<br/>Constructing multiple boolean conditions --<br/>Filtering with boolean indexing --<br/>Replicating boolean indexing with index selection --<br/>Selecting with unique and sorted indexes --<br/>Gaining perspective on stock prices --<br/>Translating SQL WHERE clauses --<br/>Determining the normality of stock market returns --<br/>Improving readability of boolean indexing with the query method --<br/>Preserving Series with the where method --<br/>Masking DataFrame rows --<br/>Selecting with booleans, integer location, and labels --<br/>Index Alignment Packt --<br/>Index Alignment --<br/>Introduction --<br/>Examining the Index object --<br/>Producing Cartesian products --<br/>Exploding indexes --<br/>Filling values with unequal indexes --<br/>Appending columns from different DataFrames --<br/>Highlighting the maximum value from each column --<br/>Replicating idxmax with method chaining --<br/>Finding the most common maximum --<br/>Grouping for Aggregation, Filtration, and Transformation Packt --<br/>Grouping for Aggregation, Filtration, and Transformation --<br/>Introduction --<br/>Defining an aggregation --<br/>Grouping and aggregating with multiple columns and functions --<br/>Removing the MultiIndex after grouping --<br/>Customizing an aggregation function --<br/>Customizing aggregating functions with *args and **kwargs --<br/>Examining the groupby object --<br/>Filtering for states with a minority majority --<br/>Transforming through a weight loss bet --<br/>Calculating weighted mean SAT scores per state with apply --<br/>Grouping by continuous variables --<br/>Counting the total number of flights between cities --<br/>Finding the longest streak of on-time flights --<br/>Restructuring Data into a Tidy Form Packt --<br/>Restructuring Data into a Tidy Form --<br/>Introduction --<br/>Tidying variable values as column names with stack --<br/>Tidying variable values as column names with melt --<br/>Stacking multiple groups of variables simultaneously --<br/>Inverting stacked data --<br/>Unstacking after a groupby aggregation --<br/>Replicating pivot_table with a groupby aggregation --<br/>Renaming axis levels for easy reshaping --<br/>Tidying when multiple variables are stored as column names --<br/>Tidying when multiple variables are stored as column values --<br/>Tidying when two or more values are stored in the same cell --<br/>Tidying when variables are stored in column names and values --<br/>Tidying when multiple observational units are stored in the same table --<br/>Combining Pandas Objects Packt --<br/>Combining Pandas Objects --<br/>Introduction --<br/>Appending new rows to DataFrames --<br/>Concatenating multiple DataFrames together --<br/>Comparing President Trump's and Obama's approval ratings --<br/>Understanding the differences between concat, join, and merge --<br/>Connecting to SQL databases --<br/>Time Series Analysis Packt --<br/>Time Series Analysis --<br/>Introduction --<br/>Understanding the difference between Python and pandas date tools --<br/>Slicing time series intelligently --<br/>Using methods that only work with a DatetimeIndex --<br/>Counting the number of weekly crimes --<br/>Aggregating weekly crime and traffic accidents separately --<br/>Measuring crime by weekday and year --<br/>Grouping with anonymous functions with a DatetimeIndex --<br/>Grouping by a Timestamp and another column --<br/>Finding the last time crime was 20% lower with merge_asof --<br/>Visualization with Matplotlib, Pandas, and Seaborn
520 ## - SUMMARY, ETC.
Summary, etc Over 95 hands-on recipes to leverage the power of pandas for efficient scientific computation and data analysis About This Book Use the power of pandas to solve most complex scientific computing problems with ease Leverage fast, robust data structures in pandas to gain useful insights from your data Practical, easy to implement recipes for quick solutions to common problems in data using pandas Who This Book Is For This book is for data scientists, analysts and Python developers who wish to explore data analysis and scientific computing in a practical, hands-on manner. The recipes included in this book are suitable for both novice and advanced users, and contain helpful tips, tricks and caveats wherever necessary. Some understanding of pandas will be helpful, but not mandatory. What You Will Learn Master the fundamentals of pandas to quickly begin exploring any dataset Isolate any subset of data by properly selecting and querying the data Split data into independent groups before applying aggregations and transformations to each group Restructure data into tidy form to make data analysis and visualization easier Prepare real-world messy datasets for machine learning Combine and merge data from different sources through pandas SQL-like operations Utilize pandas unparalleled time series functionality Create beautiful and insightful visualizations through pandas direct hooks to Matplotlib and Seaborn In Detail This book will provide you with unique, idiomatic, and fun recipes for both fundamental and advanced data manipulation tasks with pandas. Some recipes focus on achieving a deeper understanding of basic principles, or comparing and contrasting two similar operations. Other recipes will dive deep into a particular dataset, uncovering new and unexpected insights along the way. The pandas library is massive, and it's common for frequent users to be unaware of many of its more impressive features. The official pandas documentation, while thorough, does not contain many useful examples of how to piece together multiple commands like one would do during an actual analysis. This book guides you, as if you were looking over the shoulder of an expert, through practical situations that you are highly likely to encounter. Many advanced recipes combine several different features across the pandas library to generate results.
650 ## - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Data Processing
9 (RLIN) 270531
650 ## - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Programming Languages
General subdivision Python
9 (RLIN) 270532
650 ## - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Machine Learning
9 (RLIN) 270533
942 ## - ADDED ENTRY ELEMENTS (KOHA)
Item type Books
Source of classification or shelving scheme Dewey Decimal Classification
Holdings
Withdrawn status Lost status Source of classification or shelving scheme Damaged status Koha normalized classification for sorting Not for loan Home library Current library Shelving location Date acquired Source of acquisition Cost, normal purchase price Total Checkouts Full call number Barcode Date last seen Cost, replacement price Price effective from Koha item type
    Dewey Decimal Classification   005_133000000000000_PET   Gulbanoo Premji Library, Azim Premji University, Bengaluru Gulbanoo Premji Library, Azim Premji University, Bengaluru 1st Floor 20/05/2024 240 3689.10   005.133 PET 51578 20/05/2024 4099.00 20/05/2024 Books

Total Visits to Site (September 2024 onwards):best free website hit counter