Mastering Python for Data Science
eBook - ePub

Mastering Python for Data Science

Samir Madhavan

Share book
  1. 294 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Mastering Python for Data Science

Samir Madhavan

Book details
Book preview
Table of contents
Citations

About This Book

Explore the world of data science through Python and learn how to make sense of data

About This Book

  • Master data science methods using Python and its libraries
  • Create data visualizations and mine for patterns
  • Advanced techniques for the four fundamentals of Data Science with Python - data mining, data analysis, data visualization, and machine learning

Who This Book Is For

If you are a Python developer who wants to master the world of data science then this book is for you. Some knowledge of data science is assumed.

What You Will Learn

  • Manage data and perform linear algebra in Python
  • Derive inferences from the analysis by performing inferential statistics
  • Solve data science problems in Python
  • Create high-end visualizations using Python
  • Evaluate and apply the linear regression technique to estimate the relationships among variables.
  • Build recommendation engines with the various collaborative filtering algorithms
  • Apply the ensemble methods to improve your predictions
  • Work with big data technologies to handle data at scale

In Detail

Data science is a relatively new knowledge domain which is used by various organizations to make data driven decisions. Data scientists have to wear various hats to work with data and to derive value from it. The Python programming language, beyond having conquered the scientific community in the last decade, is now an indispensable tool for the data science practitioner and a must-know tool for every aspiring data scientist. Using Python will offer you a fast, reliable, cross-platform, and mature environment for data analysis, machine learning, and algorithmic problem solving.

This comprehensive guide helps you move beyond the hype and transcend the theory by providing you with a hands-on, advanced study of data science.

Beginning with the essentials of Python in data science, you will learn to manage data and perform linear algebra in Python. You will move on to deriving inferences from the analysis by performing inferential statistics, and mining data to reveal hidden patterns and trends. You will use the matplot library to create high-end visualizations in Python and uncover the fundamentals of machine learning. Next, you will apply the linear regression technique and also learn to apply the logistic regression technique to your applications, before creating recommendation engines with various collaborative filtering algorithms and improving your predictions by applying the ensemble methods.

Finally, you will perform K-means clustering, along with an analysis of unstructured data with different text mining techniques and leveraging the power of Python in big data analytics.

Style and approach

This book is an easy-to-follow, comprehensive guide on data science using Python. The topics covered in the book can all be used in real world scenarios.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Mastering Python for Data Science an online PDF/ePUB?
Yes, you can access Mastering Python for Data Science by Samir Madhavan in PDF and/or ePUB format, as well as other popular books in Informatica & Visualizzazione di dati. We have over one million books available in our catalogue for you to explore.

Information

Year
2015
ISBN
9781784390150

Mastering Python for Data Science


Table of Contents

Mastering Python for Data Science
Credits
About the Author
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers, and more
Why subscribe?
Free access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Downloading the color images of this book
Errata
Piracy
Questions
1. Getting Started with Raw Data
The world of arrays with NumPy
Creating an array
Mathematical operations
Array subtraction
Squaring an array
A trigonometric function performed on the array
Conditional operations
Matrix multiplication
Indexing and slicing
Shape manipulation
Empowering data analysis with pandas
The data structure of pandas
Series
DataFrame
Panel
Inserting and exporting data
CSV
XLS
JSON
Database
Data cleansing
Checking the missing data
Filling the missing data
String operations
Merging data
Data operations
Aggregation operations
Joins
The inner join
The left outer join
The full outer join
The groupby function
Summary
2. Inferential Statistics
Various forms of distribution
A normal distribution
A normal distribution from a binomial distribution
A Poisson distribution
A Bernoulli distribution
A z-score
A p-value
One-tailed and two-tailed tests
Type 1 and Type 2 errors
A confidence interval
Correlation
Z-test vs T-test
The F distribution
The chi-square distribution
Chi-square for the goodness of fit
The chi-square test of independence
ANOVA
Summary
3. Finding a Needle in a Haystack
What is data mining?
Presenting an analysis
Studying the Titanic
Which passenger class has the maximum number of survivors?
What is the distribution of survivors based on gender among the various classes?
What is the distribution of nonsurvivors among the various classes who have family aboard the ship?
What was the survival percentage among different age groups?
Summary
4. Making Sense of Data through Advanced Visualization
Controlling the line properties of a chart
Using keyword arguments
Using the setter methods
Using the setp() command
Creating multiple plots
Playing with text
Styling your plots
Box plots
Heatmaps
Scatter plots with histograms
A scatter plot matrix
Area plots
Bubble charts
Hexagon bin plots
Trellis plots
A 3D plot of a surface
Summary
5. Uncovering Machine Learning
Different types of machine learning
Supervised learning
Unsupervised learning
Reinforcement learning
Decision trees
Linear regression
Logistic regression
The naive Bayes classifier
The k-means clustering
Hierarchical clustering
Summary
6. Performing Predictions with a Linear Regression
Simple linear regression
Multiple regression
Training and testing a model
Summary
7. Estimating the Likelihood of Events
Logistic regression
Data preparation
Creating training and testing sets
Building a model
Model evaluation
Evaluating a model based on test data
Model building and evaluation with SciKit
Summary
8. Generating Recommendations with Collaborative Filtering
Recommendation data
User-based collaborative filtering
Finding similar users
The Euclidean distance score
The Pearson correlation score
Ranking the users
Recommending items
Item-based collaborative filtering
Summary
9. Pushing Boundaries with Ensemble Models
The census income dataset
Exploring the census data
Hypothesis 1: People who are older earn more
Hypothesis 2: Income bias based on working class
Hypothesis 3: People with more education earn more
Hypothesis 4: Married people tend to earn more
Hypothesis 5: There is a bias in income based on race
Hypothesis 6: There is a bias in the income based on occupation
Hypothesis 7: Men earn more
Hypothesis 8: People who clock in more hours earn more
Hypothesis 9: There is a bias in income based on the country of origin
Decision trees
Random forests
Summary
10. Applying Segmentation with k-means Clustering
The k-means algorithm and its working
A simple example
The k-means clustering with countries
Determining the number of clusters
Clustering the countries
Summary
11. Analyzing Unstructured Data with Text Mining
Preprocessing data
Crea...

Table of contents