Python Data Science Cookbook - Voska, Taryn
- Format: Broché Voir le descriptif
Vous en avez un à vendre ?
Vendez-le-vôtre69,37 €
Produit Neuf
Ou 17,34 € /mois
- Livraison à 0,01 €
- Livré entre le 7 et le 14 avril
Brand new, In English, Fast shipping from London, UK; Tout neuf, en anglais, expédition rapide depuis Londres, Royaume-Uni;ria9789349174993_dbm
- Payez directement sur Rakuten (CB, PayPal, 4xCB...)
- Récupérez le produit directement chez le vendeur
- Rakuten vous rembourse en cas de problème
Gratuit et sans engagement
Félicitations !
Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !
TROUVER UN MAGASIN
Retour
Avis sur Python Data Science Cookbook de Voska, Taryn Format Broché - Livre Encyclopédies, Dictionnaires
0 avis sur Python Data Science Cookbook de Voska, Taryn Format Broché - Livre Encyclopédies, Dictionnaires
Donnez votre avis et cumulez 5
Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.
-
Remarques Sur Les Couleurs Suivi De Le Vu, Le Peint Et Le Parlé
Occasion dès 49,97 €
-
Textes Allemands : Classes Terminales
1 avis
Occasion dès 40,00 €
-
Woman In The Mirror
Occasion dès 44,00 €
-
Elvis Presley On Tour Livre Usa 120 Pages 240 Photos Inedites ! Rare!
Occasion dès 59,00 €
-
Stone Age - Ancient Castles Of Europe
1 avis
Occasion dès 44,00 €
-
Art And Flair Of Mary Blair, The-Updated Edition
Neuf dès 44,17 €
Occasion dès 149,00 €
-
The Harvard Book: Selections From Three Centuries, Revised Edition
Neuf dès 80,22 €
-
My Favorite Thing Is Monsters
1 avis
Neuf dès 49,55 €
Occasion dès 75,66 €
-
L'amica Geniale. Edizione Completa
Occasion dès 70,19 €
-
Machine Learning And Data Sciences For Financial Markets
Neuf dès 150,03 €
Occasion dès 78,87 €
-
Obra Hermética
Occasion dès 45,08 €
-
Art Nouveau: Paris 1895 (Giftwraps By Artists)
Occasion dès 35,00 €
-
Rinascimento Da Brunelleschi A Michelangelo - La Rappresentazione Dell'architettura A Cura Di Henry Millon E Vittorio Magnago Lampugnani . /. Bompiani 1994
Occasion dès 40,00 €
-
Grammatik Aktiv - Deutsch Als Fremdsprache - B2/C1
Neuf dès 37,15 €
-
Michael Kenna - Arbres / Trees
2 avis
Occasion dès 95,00 €
-
Eighteenth Century Musical Instruments, France And Britain = Les Instruments De Musique Au Xviiie Siecle, France Et Grande-Bretagne: [Catalo
Occasion dès 55,50 €
-
Sailing The Seas
Neuf dès 45,00 €
-
The Art Of Computer Programming 1. Fundamental Algorithms
Occasion dès 45,99 €
-
Le Cul De La Femme - Une Collection De Portraits De Pierre Louÿs (1892-1914)
5 avis
Occasion dès 69,00 €
-
The Golden Cage The Enigma Of Anorexia Nervosa
Occasion dès 50,75 €
Produits similaires
Présentation Python Data Science Cookbook de Voska, Taryn Format Broché
- Livre Encyclopédies, Dictionnaires
Résumé :
This book's got a bunch of handy recipes for data science pros to get them through the most common challenges they face when using Python tools and libraries. Each recipe shows you exactly how to do something step-by-step. You can load CSVs directly from a URL, flatten nested JSON, query SQL and NoSQL databases, import Excel sheets, or stream large files in memory-safe batches. Once the data's loaded, you'll find simple ways to spot and fill in missing values, standardize categories that are off, clip outliers, normalize features, get rid of duplicates, and extract the year, month, or weekday from timestamps. You'll learn how to run quick analyses, like generating descriptive statistics, plotting histograms and correlation heatmaps, building pivot tables, creating scatter-matrix plots, and drawing time-series line charts to spot trends. You'll learn how to build polynomial features, compare MinMax, Standard, and Robust scaling, smooth data with rolling averages, apply PCA to reduce dimensions, and encode high-cardinality fields with sparse one-hot encoding using feature engineering recipes. As for machine learning, you'll learn to put together end-to-end pipelines that handle imputation, scaling, feature selection, and modeling in one object, create custom transformers, automate hyperparameter searches with GridSearchCV, save and load your pipelines, and let SelectKBest pick the top features automatically. You'll learn how to test hypotheses with t-tests and chi-square tests, build linear and Ridge regressions, work with decision trees and random forests, segment countries using clustering, and evaluate models using MSE, classification reports, and ROC curves. And you'll finally get a handle on debugging and integration: fixing pandas merge errors, correcting NumPy broadcasting mismatches, and making sure your plots are consistent. Key Learnings You can load remote CSVs directly into pandas using read_csv, so you don't have to deal with manual downloads and file clutter. Use json_normalize to convert nested JSON responses into simple tables, making it a breeze to analyze. You can query relational and NoSQL databases directly from Python, and the results will merge seamlessly into Pandas. Find and fill in missing values using IGNSA(), forward-fill, and median strategies for all of your data over time. You can free up a lot of memory by turning string columns into Pandas' Categorical dtype. You can speed up computations with NumPy vectorization and chunked CSV reading to prevent RAM exhaustion. You can build feature pipelines using custom transformers, scaling, and automated hyperparameter tuning with GridSearchCV. Use regression, tree-based, and clustering algorithms to show linear, nonlinear, and group-specific vaccination patterns. Evaluate models using MSE, R?, precision, recall, and ROC curves to assess their performance. Set up automated data retrieval with scheduled API pulls, cloud storage, Kafka streams, and GraphQL queries. Table of Content Data Ingestion from Multiple Sources Preprocessing and Cleaning Complex Datasets Performing Quick Exploratory Analysis Optimizing Data Structures and Performance Feature Engineering and Transformation Building Machine Learning Pipelines Implementing Statistical and Machine Learning Techniques Debugging and Troubleshooting Advanced Data Retrieval and Integration...
Sommaire:
This book's got a bunch of handy recipes for data science pros to get them through the most common challenges they face when using Python tools and libraries. Each recipe shows you exactly how to do something step-by-step. You can load CSVs directly from a URL, flatten nested JSON, query SQL and NoSQL databases, import Excel sheets, or stream large files in memory-safe batches. Once the data's loaded, you'll find simple ways to spot and fill in missing values, standardize categories that are off, clip outliers, normalize features, get rid of duplicates, and extract the year, month, or weekday from timestamps. You'll learn how to run quick analyses, like generating descriptive statistics, plotting histograms and correlation heatmaps, building pivot tables, creating scatter-matrix plots, and drawing time-series line charts to spot trends. You'll learn how to build polynomial features, compare MinMax, Standard, and Robust scaling, smooth data with rolling averages, apply PCA to reduce dimensions, and encode high-cardinality fields with sparse one-hot encoding using feature engineering recipes. As for machine learning, you'll learn to put together end-to-end pipelines that handle imputation, scaling, feature selection, and modeling in one object, create custom transformers, automate hyperparameter searches with GridSearchCV, save and load your pipelines, and let SelectKBest pick the top features automatically. You'll learn how to test hypotheses with t-tests and chi-square tests, build linear and Ridge regressions, work with decision trees and random forests, segment countries using clustering, and evaluate models using MSE, classification reports, and ROC curves. And you'll finally get a handle on debugging and integration: fixing pandas merge errors, correcting NumPy broadcasting mismatches, and making sure your plots are consistent. Key Learnings You can load remote CSVs directly into pandas using read_csv, so you don't have to deal with manual downloads and file clutter. Use json_normalize to convert nested JSON responses into simple tables, making it a breeze to analyze. You can query relational and NoSQL databases directly from Python, and the results will merge seamlessly into Pandas. Find and fill in missing values using IGNSA(), forward-fill, and median strategies for all of your data over time. You can free up a lot of memory by turning string columns into Pandas' Categorical dtype. You can speed up computations with NumPy vectorization and chunked CSV reading to prevent RAM exhaustion. You can build feature pipelines using custom transformers, scaling, and automated hyperparameter tuning with GridSearchCV. Use regression, tree-based, and clustering algorithms to show linear, nonlinear, and group-specific vaccination patterns. Evaluate models using MSE, R?, precision, recall, and ROC curves to assess their performance. Set up automated data retrieval with scheduled API pulls, cloud storage, Kafka streams, and GraphQL queries. Table of Content Data Ingestion from Multiple Sources Preprocessing and Cleaning Complex Datasets Performing Quick Exploratory Analysis Optimizing Data Structures and Performance Feature Engineering and Transformation Building Machine Learning Pipelines Implementing Statistical and Machine Learning Techniques Debugging and Troubleshooting Advanced Data Retrieval and Integration...
Détails de conformité du produit
Personne responsable dans l'UE