3 followers
Documenting and sharing everything I learn about Data Science, Machine Learning, R, Python, SQL and more.
Subscribe to my newsletter and never miss my upcoming articles
Rule-based Sentiment Analysis Using Python and R Overview Why Sentiment Analysis? NLP is subfield of linguistic, computer science and artificial intelligence (wiki), and you could spend years studying it. However, I wanted a quick dive to a get an i...
Overview & Setup This post uses various R libraries and functions to help you explore your Twitter Analytics Data. The first thing to do is download data from analytics.twitter.com. The assumption here is that you're already a Twitter user and have b...
Photo by Fineas Anton on Unsplash Overview In this post, we'll explore Gradient Descent from the ground up starting conceptually, then using code to build up our intuition brick by brick. While this post is part of an ongoing series where I document...
Overview This is a quick walk through of using the sunburstR package to create sunburst plots in R. The original document is written in RMarkdown, which is an interactive version of markdown. The following code can be run in RMarkdown or an R script...
Cover Photo by Nasonov Aleksandr on Unsplash Overview This is a continuation of my progress through Data Science from Scratch by Joel Grus. We'll use a classic coin-flipping example in this post because it is simple to illustrate with both concept an...
Cover Credit Overview Itertools are a core set of fast, memory efficient tools for creating iterators for efficient looping (read the documentation here). Itertools Permutations One (of many) uses for itertools is to create a permutations() function...