• Complain

Brownley - Foundations for analytics with Python from non-programmer to hacker

Here you can read online Brownley - Foundations for analytics with Python from non-programmer to hacker full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Sebastopol;CA, year: 2016, publisher: OReilly Media, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Brownley Foundations for analytics with Python from non-programmer to hacker
  • Book:
    Foundations for analytics with Python from non-programmer to hacker
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2016
  • City:
    Sebastopol;CA
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Foundations for analytics with Python from non-programmer to hacker: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Foundations for analytics with Python from non-programmer to hacker" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

If youre like many of Excels 750 million users, you want to do more with your datalike repeating similar analyses over hundreds of files, or combining data in many files for analysis at one time. This practical guide shows ambitious non-programmers how to automate and scale the processing and analysis of data in different formatsby using Python.

After author Clinton Brownley takes you through Python basics, youll be able to write simple scripts for processing data in spreadsheets as well as databases. Youll also learn how to use several Python modules for parsing files, grouping data, and producing statistics. No programming experience is necessary.

  • Create and run your own Python scripts by learning basic syntax
  • Use Pythons csv module to read and parse CSV files
  • Read multiple Excel worksheets and workbooks with the xlrd module
  • Perform database operations in MySQL or with the mysqlclient module
  • Create Python...
  • Brownley: author's other books


    Who wrote Foundations for analytics with Python from non-programmer to hacker? Find out the surname, the name of the author of the book and a list of all author's works by series.

    Foundations for analytics with Python from non-programmer to hacker — read online for free the complete book (whole text) full work

    Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Foundations for analytics with Python from non-programmer to hacker" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

    Light

    Font size:

    Reset

    Interval:

    Bookmark:

    Make
    Dedication

    For Aisha and Amaya,
    Education is the kindling of a flame,
    not the filling of a vessel. Socrates
    May you always enjoy stoking the fire.

    Foundations for Analytics with Python

    by Clinton W. Brownley

    Copyright 2016 Clinton Brownley. All rights reserved.

    Printed in the United States of America.

    Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

    OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://oreilly.com/safari). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com.

    • Editors: Laurel Ruma and Tim McGovern
    • Production Editor: Colleen Cole
    • Copyeditor: Jasmine Kwityn
    • Proofreader: Rachel Head
    • Indexer: Judith McConville
    • Interior Designer: David Futato
    • Cover Designer: Karen Montgomery
    • Illustrator: Rebecca Demarest
    • August 2016: First Edition
    Revision History for the First Edition
    • 2016-08-10: First Release
    • 2017-03-24: Second Release

    See http://oreilly.com/catalog/errata.csp?isbn=9781491922538 for release details.

    The OReilly logo is a registered trademark of OReilly Media, Inc. Foundations for Analytics with Python, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

    While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

    978-1-491-92253-8

    [LSI]

    Preface

    This book is intended for readers who deal with data in spreadsheets on a regular basis, but who have never written a line of code. The opening chapters will get you set up with the Python environment, and teach you how to get the computer to look at data and take simple actions with it. Soon, youll learn to do things with data in spreadsheets (CSV files) and databases.

    At first this will feel like a step backward, especially if youre a power user of Excel. Painstakingly telling Python how to loop through every cell in a column when you used to select and paste feels slow and frustrating (especially when you have to go back three times to find a typo). But as you become more proficient, youll start to see where Python really shines, especially in automating tasks that you currently do over and over.

    This book is written so that you can work through it from beginning to end and feel confident that you can write code that works and does what you expect at the end. Its probably a good idea to type out the code at first, so that you get accustomed to things like tabs and closing your parentheses and quotes, but all the code is available online and you may wind up referring to those links to copy and paste as you do your own work in the future. Thats fine! Knowing when to cut and paste is part of being an efficient programmer. Reading the book as you go through the examples will teach you why and how the code samples work.

    Good luck on your journey to becoming a programmer!

    Why Read This Book? Why Learn These Skills?

    If you deal with data on a regular basis, then there are a lot of reasons for you to be excited about learning how to program. One benefit is that you can scale your data processing and analysis tasks beyond what would be feasible or practical to do manually. Perhaps youve already come across the problem of needing to process large files that contain so much data that its impossible or impractical to open them. Even if you can open the files, processing them manually is time consuming and error prone, because any modifications you make to the data take a long time to updateand with so much data, its easy to miss a row or column that you intended to change. Or perhaps youve come across the problem of needing to process a large number of filesso many files that its impossible or impractical to process them manually. In some cases, you need to use data from dozens, hundreds, or even thousands of files. As the number of files increases, it becomes increasingly difficult to handle them manually. In both of these situations, writing a Python script to process the files solves your problem because Python scripts can process large files and lots of files quickly and efficiently.

    Another benefit of learning to program is that you can automate repetitive data manipulation and analysis processes. In many cases, the operations we carry out on data are repetitive and time consuming. For example, a common data management process involves receiving data from a customer or supplier, extracting the data you want to retain, possibly transforming or reformatting the data, and then saving the data in a database or other data repository (this is the process known to data scientists as ETLextract, transform, load). Similarly, a typical data analysis process involves acquiring the data you want to analyze, preparing the data for analysis, analyzing the data, and reporting the results. In both of these situations, once the process is established, its possible to write Python code to carry out the operations. By creating a Python script to carry out the operations, you reduce a time-consuming, repetitive process down to the running of a script and free up your time to work on other impactful tasks.

    On top of that, carrying out data processing and analysis operations in a Python script instead of manually reduces the chance of errors. When you process data manually, its always possible to make a copy/paste error or a typo. There are lots of reasons why this might happenyou might be working so quickly that you miss the mistake, or you might be distracted or tired. Furthermore, the chance of errors increases when youre processing large files or lots of files, or when youre carrying out repetitive actions. Conversely, a Python script doesnt get distracted or tired. Once you debug your script and confirm that it processes the data the way you want it to, it will carry out the operations consistently and tirelessly.

    Finally, learning to program is fun and empowering. Once youre familiar with the basic syntax, its fun to try to figure out which pieces of syntax you need and how to fit them together to accomplish your overall data analysis goal. When it comes to code and syntax, there are lots of examples online that show you how to use specific pieces of syntax to carry out particular tasks. Online examples give you something to work with, but then you need to use your creativity and problem-solving skills to figure out how you need to modify the code you found online to suit your needs. The whole process of searching for the right code and figuring out how to make it work for you can be a lot of fun. Moreover, learning to program is incredibly empowering. For example, consider the situations I mentioned before, involving large files or lots of files. When you cant program, these situations are either incredibly time consuming or simply infeasible. Once you can program, you can tackle both situations relatively quickly and easily with Python scripts. Being able to carry out data processing and analysis tasks that were once laborious or impossible provides a tremendous rush of positive energy, so much so that youll be looking for more opportunities to tackle challenging data processing tasks with Python.

    Next page
    Light

    Font size:

    Reset

    Interval:

    Bookmark:

    Make

    Similar books «Foundations for analytics with Python from non-programmer to hacker»

    Look at similar books to Foundations for analytics with Python from non-programmer to hacker. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


    Reviews about «Foundations for analytics with Python from non-programmer to hacker»

    Discussion, reviews of the book Foundations for analytics with Python from non-programmer to hacker and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.