You are on page 1of 2

1 # Text Analytics with Python

2 ### A Practical Real-World Approach to Gaining Actionable Insights from your Data
3
4 Text analytics can be a bit overwhelming and frustrating at times
5 with the unstructured and noisy nature of textual data and the
6 vast amount of information available.
7 "Text Analytics with Python" is a book packed with 385 pages of useful information
8 based on techniques, algorithms, experiences and various lessons learnt over time
9 in analyzing text data. This repository contains datasets and code used in this book.
10 I will also be adding various notebooks and bonus content here from time to time.
11 Keep watching this space!
12
13 ## Work is underway for a revised edition of this book including all code in python 3
with several new examples too!
14 <br>
15
16 ## Get the book
17 <div>
18 <a target="_blank" href="http://www.apress.com/us/book/9781484223871">
19 <img src="./image_gallery/apress_logo.png" alt="apress" align="left"/>
20 </a>
21 <a target="_blank" href="http://www.springer.com/us/book/9781484223871">
22 <img src="./image_gallery/springer_logo.png" alt="springer" align="left"/>
23 </a>
24 <a target="_blank"
href="https://www.amazon.com/Text-Analytics-Python-Real-World-Actionable/dp/148422387X/re
f=sr_1_1?ie=UTF8&qid=1481143141&sr=8-1&keywords=text+analytics+with+python">
25 <img src="./image_gallery/amazon_logo.jpg" alt="amazon" align="left"/>
26 </a>
27 <br>
28 </div>
29 <br><br><br>
30
31 <div>
32 <a target="_blank"
href="https://www.safaribooksonline.com/library/view/text-analytics-with/9781484223871/">
33 <img src="./image_gallery/safari_logo.jpg" alt="safari" align="left"/>
34 </a>
35 <a target="_blank"
href="https://books.google.co.in/books?id=IimgDQAAQBAJ&dq=text+analytics+with+python&sour
ce=gbs_navlinks_s">
36 <img src="./image_gallery/googlebooks_logo.png" alt="google" align="left"/>
37 </a>
38 <a target="_blank"
href="https://play.google.com/store/books/details/Dipanjan_Sarkar_Text_Analytics_with_Pyt
hon?id=IimgDQAAQBAJ">
39 <img src="./image_gallery/googleplay_logo.png" alt="google" align="left"/>
40 </a>
41 <br>
42 </div>
43 <br><br>
44
45 ## About the book
46 <a target="_blank"
href="https://www.amazon.com/Text-Analytics-Python-Real-World-Actionable/dp/148422387X/re
f=sr_1_1?ie=UTF8&qid=1481143141&sr=8-1&keywords=text+analytics+with+python">
47 <img src="./image_gallery/cover_front.png" alt="Book Cover" width="250" align="left"/>
48 </a>
49
50 Derive useful insights from your data using Python.
51 Learn the techniques related to natural language processing and text analytics,
52 and gain the skills to know which technique is best suited to solve a particular problem.
53
54 Text Analytics with Python teaches you both basic and advanced concepts,
55 including text and language syntax, structure, semantics.
56 You will focus on algorithms and techniques, such as text classification,
57 clustering, topic modeling, and text summarization
58
59 A structured and comprehensive approach is followed in this book so that
60 readers with little or no experience do not find themselves overwhelmed.
61 You will start with the basics of natural language and Python and move on
62 to advanced analytical and machine learning concepts. You will look at each
63 technique and algorithm with both a bird's eye view to understand how it
64 can be used as well as with a microscopic view to understand the mathematical
65 concepts and to implement them to solve your own problems.
66
67 <div style='font-size:0.5em;'><sup>
68 Edition: 1st &emsp; Pages: 385 &emsp; Language: English<br/>
69 Book Title: Text Analytics with Python &emsp; Publisher: Apress (a part of Springer)
&emsp; Copyright: Dipanjan Sarkar<br/>
70 Print ISBN: 978-1-4842-2387-1 &emsp; Online ISBN: 978-1-4842-2388-8 &emsp; DOI:
10.1007/978-1-4842-2388-8<br/>
71 </div>
72
73
74 <br>
75
76 This book:
77 - Provides complete coverage of the major concepts and
78 techniques of natural language processing (NLP) and text analytics
79 - Includes practical real-world examples of techniques for implementation,
80 such as building a text classification system to categorize news articles,
81 analyzing app or game reviews using topic modeling and text summarization,
82 and clustering popular movie synopses and analyzing the sentiment of movie reviews
83 - Shows implementations based on Python and several popular open source libraries
84 in NLP and text analytics, such as the natural language toolkit
([`nltk`](http://www.nltk.org/)),
85 [`gensim`](https://radimrehurek.com/gensim/),
[`scikit-learn`](http://scikit-learn.org/stable/), [`spaCy`](https://spacy.io/) and
[`pattern`](http://www.clips.ua.ac.be/pattern)
86
87
88 ## Contents
89
90 - Chapter 1: Natural Language Basics
91 - Chapter 2: Python Refresher
92 - Chapter 3: Processing and Understanding Text
93 - Chapter 4: Text Classification
94 - Chapter 5: Text Summarization
95 - Chapter 6: Text Similarity and Clustering
96 - Chapter 7: Semantic and Sentiment Analysis
97
98
99

You might also like