Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Statistics for Data Science

You're reading from   Statistics for Data Science Leverage the power of statistics for Data Analysis, Classification, Regression, Machine Learning, and Neural Networks

Arrow left icon
Product type Paperback
Published in Nov 2017
Publisher Packt
ISBN-13 9781788290678
Length 286 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
James D. Miller James D. Miller
Author Profile Icon James D. Miller
James D. Miller
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Transitioning from Data Developer to Data Scientist 2. Declaring the Objectives FREE CHAPTER 3. A Developer's Approach to Data Cleaning 4. Data Mining and the Database Developer 5. Statistical Analysis for the Database Developer 6. Database Progression to Database Regression 7. Regularization for Database Improvement 8. Database Development and Assessment 9. Databases and Neural Networks 10. Boosting your Database 11. Database Classification using Support Vector Machines 12. Database Structures and Machine Learning

Transformations

A thought-provoking type of data cleaning, which may be a new concept for a data developer, is data transformation. Data transformation is a process where the data scientist actually changes what you might expect to be valid data values through some mathematical operation.

Performing data transformation maps data from an original format into the format expected by an appropriate application or a format more convenient for a particular assumption or purpose. This includes value conversions or translation functions, as well as normalizing of numeric values to conform to the minimum and maximum values.

As we've used R earlier in this chapter, we can see that the syntax of a very simple example of this process is simple. For example, a data scientist may decide to transform a given value to the square root of the value:

data.dat$trans_Y <-sqrt(data.dat$Y) 
...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime